diff options
-rwxr-xr-x | acprep | 2 | ||||
-rw-r--r-- | lib/Makefile | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -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 \ |