From 5c3ea3d7bf7f61e554f0fd59109217d5c583b487 Mon Sep 17 00:00:00 2001 From: Matthew Spotnitz Date: Mon, 4 Nov 2024 15:43:06 -0700 Subject: [PATCH] Fix BOOST_PREFIX in Makefile Restored correct definition of BOOST_PREFIX. It was broken in a find & replace error. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b995dd6..04eb979 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,7 @@ S4r_LIBNAME = $(OBJDIR)/libS4r.a #### and PREFIX if you want to install boost to a different location # Specify the paths to the boost include and lib directories -BOOST_-L$(BOOST_PREFIX)/lib/PREFIX=${CURDIR}/S4 +BOOST_PREFIX=${CURDIR}/S4 BOOST_INC = -I$(BOOST_PREFIX)/include BOOST_LIBS = -lboost_serialization BOOST_URL=https://sourceforge.net/projects/boost/files/boost/1.74.0/boost_1_74_0.tar.gz @@ -352,4 +352,4 @@ S4_pyext: objdir $(S4_LIBNAME) pip3 install --upgrade ./ clean: - rm -rf $(OBJDIR) \ No newline at end of file + rm -rf $(OBJDIR)