From ab87b13b75fef6790b2fb6de1a58ab0214ddaeb6 Mon Sep 17 00:00:00 2001 From: David Evans Date: Mon, 25 Jun 2018 18:20:04 +0100 Subject: [PATCH] Reverse prereqs order to get build to work --- build/Makefile.linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile.linux b/build/Makefile.linux index 1421451..fbf92a5 100644 --- a/build/Makefile.linux +++ b/build/Makefile.linux @@ -48,7 +48,7 @@ LIBS = $(ARROW_LIB) \ $(ZLIB_LIB) \ $(ZSTD_LIB) -libparquet.so: $(OBJ) $(LIBS) +libparquet.so: $(LIBS) $(OBJ) $(CC) -shared -o $@ $(OBJ) $(LDFLAGS) parquet_filter.o: $(VTABLE)/parquet_filter.cc $(VTABLE)/parquet_filter.h