[nasm:nasm-2.15.xx] test/Makefile: allow overriding -L+

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Wed Jul 8 08:57:05 PDT 2020


Commit-ID:  8f385ec6a0fb0913c884ff63c67c60777eb8c41b
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=8f385ec6a0fb0913c884ff63c67c60777eb8c41b
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Wed, 8 Jul 2020 08:52:49 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Wed, 8 Jul 2020 08:52:49 -0700

test/Makefile: allow overriding -L+

Add a LISTOPT to make it possible to override -L+ without a bunch
of painful additional options.

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


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

diff --git a/test/Makefile b/test/Makefile
index 00d43662..6b6ffbfe 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -2,7 +2,8 @@
 
 NASMDEP = ../nasm
 NASM	= ../nasm
-NASMOPT = -Ox -I../misc -L+ $(OPT)
+LISTOPT = -L+
+NASMOPT = -Ox -I../misc $(LISTOPT) $(OPT)
 PERL	= perl
 TESTS	= $(wildcard *.asm)
 RM_F	= rm -f


More information about the Nasm-commits mailing list