summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xacprep2
-rw-r--r--lib/Makefile6
2 files changed, 4 insertions, 4 deletions
diff --git a/acprep b/acprep
index 3433a9eb..6d4334cc 100755
--- a/acprep
+++ b/acprep
@@ -45,7 +45,7 @@ do
break
done
-BOOST_VERSION="1_37"
+BOOST_VERSION="1_38"
INCDIRS="-isystem /usr/local/include"
diff --git a/lib/Makefile b/lib/Makefile
index ff4c0d08..48ae86c1 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -9,17 +9,17 @@ STOW_ROOT = /usr/local/stow
HERE = $(shell pwd)
-BOOST_VER = 1_37_0
+BOOST_VER = 1_38_0
# architecture=combined
boost-release:
- (cd boost_$(BOOST_VER) && \
+ (cd boost && \
bjam release -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VER) \
--build-dir=$(HERE)/boost_$(BOOST_VER)/build --toolset=darwin \
--build-type=complete install)
boost-debug:
- (cd boost_$(BOOST_VER) && \
+ (cd boost && \
bjam debug -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VER) \
--build-dir=$(HERE)/boost_$(BOOST_VER)/build --toolset=darwin \
--build-type=complete \