diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 7df3ed3b..b23aa36f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -15,13 +15,14 @@ boost-release: (cd boost && \ bjam release -j3 --prefix=$(STOW_ROOT)/boost \ --build-dir=$(HERE)/boost/build --toolset=darwin \ - architecture=combined install) + --build-type=complete architecture=combined install) boost-debug: (cd boost && \ bjam debug -j3 --prefix=$(STOW_ROOT)/boost \ --build-dir=$(HERE)/boost/build --toolset=darwin \ - architecture=combined define=_GLIBCXX_DEBUG=1 install) + --build-type=complete architecture=combined \ + define=_GLIBCXX_DEBUG=1 install) boost-build: boost-release boost-debug |