From 30e6802bf07623bff38b7710fefce8dc94ff2f94 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 8 Jan 2012 21:21:22 +0000 Subject: [PATCH] Put ar flags in commands, not in the AR variable. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- liblinear/blas/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liblinear/blas/Makefile b/liblinear/blas/Makefile index 2be0186ef..255d574d5 100644 --- a/liblinear/blas/Makefile +++ b/liblinear/blas/Makefile @@ -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: