1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-15 20:29:03 +00:00

Put ar flags in commands, not in the AR variable.

AR was set to "ar rcv", which caused an error when AR was overridden
because the "rcv" flags were lost. This was noticed and fixed by Nuno
Gonçalves.
This commit is contained in:
david
2012-01-08 21:21:22 +00:00
parent 659ed2ac89
commit 30e6802bf0

View File

@@ -1,4 +1,4 @@
AR = ar rcv
AR = ar
RANLIB = ranlib
HEADERS = blas.h blas.h blasp.h
@@ -8,7 +8,7 @@ CFLAGS = $(OPTFLAGS)
FFLAGS = $(OPTFLAGS)
blas: $(FILES) $(HEADERS)
$(AR) blas.a $(FILES)
$(AR) rcv blas.a $(FILES)
$(RANLIB) blas.a
clean: