diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-04-25 13:45:41 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-04-25 13:45:41 +0100 |
commit | 5b9ce33c5cb046cc740467e56c5e05944b4d7e54 (patch) | |
tree | 5f0ace0ab8560a81e189cc0a7c5703bb03b77e08 /src/Makefile.housekeeping | |
parent | 445ac9fbdc1df64451821aa65b9aace765d1313e (diff) | |
download | ipxe-5b9ce33c5cb046cc740467e56c5e05944b4d7e54.tar.gz |
[build] Allow sparse to find compiler.h
sparse seems to have problems finding compiler.h when specified as
"-include compiler.h"; one possible explanation is that it ignores the
include path. Fix by using "-include include/compiler.h".
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r-- | src/Makefile.housekeeping | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index d40f226f..99de917a 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -475,7 +475,7 @@ LDFLAGS += --gc-sections # compiler.h is needed for our linking and debugging system # -CFLAGS += -include compiler.h +CFLAGS += -include include/compiler.h # CFLAGS for specific object types # |