diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-28 03:39:56 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-28 03:40:07 -0400 |
commit | 35b2586bc3359dbbbf8cda6e4c49091a4861947a (patch) | |
tree | eecbccf8ab5fb1066d0607eaabaa4530e66d0514 /lib | |
parent | 71e7157a650c5296e792e5a88cce14d7bfcbaec4 (diff) | |
download | fork-ledger-35b2586bc3359dbbbf8cda6e4c49091a4861947a.tar.gz fork-ledger-35b2586bc3359dbbbf8cda6e4c49091a4861947a.tar.bz2 fork-ledger-35b2586bc3359dbbbf8cda6e4c49091a4861947a.zip |
Removed Boost submodule.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 14 | ||||
m--------- | lib/boost | 0 |
2 files changed, 8 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile index 09894134..ff4c0d08 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -9,17 +9,19 @@ STOW_ROOT = /usr/local/stow HERE = $(shell pwd) +BOOST_VER = 1_37_0 + # architecture=combined boost-release: - (cd boost && \ - bjam release -j3 --prefix=$(STOW_ROOT)/boost \ - --build-dir=$(HERE)/boost/build --toolset=darwin \ + (cd boost_$(BOOST_VER) && \ + 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 && \ - bjam debug -j3 --prefix=$(STOW_ROOT)/boost \ - --build-dir=$(HERE)/boost/build --toolset=darwin \ + (cd boost_$(BOOST_VER) && \ + bjam debug -j3 --prefix=$(STOW_ROOT)/boost_$(BOOST_VER) \ + --build-dir=$(HERE)/boost_$(BOOST_VER)/build --toolset=darwin \ --build-type=complete \ define=_GLIBCXX_DEBUG=1 install) diff --git a/lib/boost b/lib/boost deleted file mode 160000 -Subproject 39d1e20cb03d22465f8d8884f744d254dfbfa0c |