summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-06 10:13:14 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2020-07-06 10:19:38 -0700
commitecb9b773f2280c636fc37fd03ea1f622915d09ce (patch)
tree3d958b3c0adcf7ac8e8bcbfd7071a14b95ad77dc
parenta6fd383126afb834cc9da51df3eb7a8c0446fda5 (diff)
downloadnasm-ecb9b773f2280c636fc37fd03ea1f622915d09ce.tar.gz
test/Makefile: the debug option for -f dbg is -gdebug
If a format is specified explicitly for the debug format, it needs to be "debug", not "dbg". Lovely inconsistency. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index e09e1148..00d43662 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -57,7 +57,7 @@ $(NASM):
$(NASM) $(NASMOPT) -f macho64 -gdwarf -o $@ -MD $@.dep -l $@.lst $<
%.dbg: %.asm $(NASMDEP)
- $(NASM) $(NASMOPT) -f dbg -gdbg -o $@ -MD $@.dep -l $@.lst $<
+ $(NASM) $(NASMOPT) -f dbg -gdebug -o $@ -MD $@.dep -l $@.lst $<
%.asm: %.pl
$(PERL) $< > $@