From b3c554555687886e2a521cf0fb0b27ef9d51d306 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin (Intel)" Date: Fri, 10 Jul 2020 01:54:38 -0700 Subject: [PATCH] test/Makefile: fix command line for .obj format The command line for .obj had a stray -F. Signed-off-by: H. Peter Anvin (Intel) --- 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 $<