diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-07-17 01:15:39 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-07-17 01:15:39 +0100 |
commit | c3290aae5406e334830009cf5ce8d64d551e0f58 (patch) | |
tree | fc8b3c4c799a8edefccc2bdf44b9f57a757cacd2 /src/Makefile.housekeeping | |
parent | 38dbe14bbe2f13b500c44abb799b1cdf2ffa409f (diff) | |
download | ipxe-c3290aae5406e334830009cf5ce8d64d551e0f58.tar.gz |
Use objdump -t for symcheck; it allows us to take the symbol section
into account (and so remove the false positives due to .tbl.* symbols).
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 ff52de1d3..ccf4dc11b 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -454,7 +454,7 @@ CLEANUP += TAGS* # SYMTAB = $(BIN)/symtab $(SYMTAB) : $(BLIB) - $(NM) -o -S $< > $@ + $(OBJDUMP) -w -t $< > $@ CLEANUP += $(BIN)/symtab |