[nasm:nasm-2.15.xx] test/Makefile: fix command line for .obj format

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Fri Jul 10 01:57:04 PDT 2020


Commit-ID:  b3c554555687886e2a521cf0fb0b27ef9d51d306
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=b3c554555687886e2a521cf0fb0b27ef9d51d306
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Fri, 10 Jul 2020 01:54:38 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Fri, 10 Jul 2020 01:54:38 -0700

test/Makefile: fix command line for .obj format

The command line for .obj had a stray -F.

Signed-off-by: H. Peter Anvin (Intel) <hpa at zytor.com>


---
 test/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/Makefile b/test/Makefile
index 6b6ffbfe..7d09b346 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -34,7 +34,7 @@ $(NASM):
 	$(NASM) $(NASMOPT) -f aout -o $@ -MD $@.dep -l $@.lst $<
 
 %.obj: %.asm $(NASMDEP)
-	$(NASM) $(NASMOPT) -f obj -gborland -F -o $@ -MD $@.dep -l $@.lst $<
+	$(NASM) $(NASMOPT) -f obj -gborland -o $@ -MD $@.dep -l $@.lst $<
 
 %.rdf: %.asm $(NASMDEP)
 	$(NASM) $(NASMOPT) -f rdf -o $@ -MD $@.dep -l $@.lst $<


More information about the Nasm-commits mailing list