summaryrefslogtreecommitdiffstats
path: root/src/Makefile.housekeeping
diff options
context:
space:
mode:
authorMichael Brown2007-07-17 02:15:39 +0200
committerMichael Brown2007-07-17 02:15:39 +0200
commitc3290aae5406e334830009cf5ce8d64d551e0f58 (patch)
treefc8b3c4c799a8edefccc2bdf44b9f57a757cacd2 /src/Makefile.housekeeping
parentKill off redundant references to the .zprefixes. (diff)
downloadipxe-c3290aae5406e334830009cf5ce8d64d551e0f58.tar.gz
ipxe-c3290aae5406e334830009cf5ce8d64d551e0f58.tar.xz
ipxe-c3290aae5406e334830009cf5ce8d64d551e0f58.zip
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.housekeeping2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping
index ff52de1d..ccf4dc11 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