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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user