diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-13 02:57:52 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-13 02:57:52 -0400 |
commit | 37b30ae0ec0a42b56fbe23d7dbd68a8da73cfee8 (patch) | |
tree | 003844987fcfcf65ef63ea988b55fb3fd78cc034 /lib/Makefile | |
parent | 203a6018eb576bf1898a7eccf707df73e03d2898 (diff) | |
download | fork-ledger-37b30ae0ec0a42b56fbe23d7dbd68a8da73cfee8.tar.gz fork-ledger-37b30ae0ec0a42b56fbe23d7dbd68a8da73cfee8.tar.bz2 fork-ledger-37b30ae0ec0a42b56fbe23d7dbd68a8da73cfee8.zip |
Added a missing --build-type=complete option.
Diffstat (limited to 'lib/Makefile')
-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 |