From ce64565b382d790688469995b8c4086a4236d13c Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 26 Apr 2016 15:26:15 -0700 Subject: [PATCH] [build] use AR variable in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0913d8..ab8c4da 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ tile-join: tile-join.o projection.o pool.o mbtiles.o mvt.o $(CXX) $(PG) $(LIBS) -O3 -g -Wall $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 libjsonpull.a: jsonpull.o - ar rc $@ $^ + $(AR) rc $@ $^ ranlib $@ %.o: %.c $(H)