diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-11 04:23:10 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-11 04:31:55 -0400 |
commit | 53ace5fccad1a91939ff189ce8d1ed134d7a6929 (patch) | |
tree | de216ba9b55e21ab9a84f2635aa77cf2c2b6f7f5 /lib | |
parent | 44518bc64066e715c2664ff666a81b857a1b00f9 (diff) | |
download | fork-ledger-53ace5fccad1a91939ff189ce8d1ed134d7a6929.tar.gz fork-ledger-53ace5fccad1a91939ff189ce8d1ed134d7a6929.tar.bz2 fork-ledger-53ace5fccad1a91939ff189ce8d1ed134d7a6929.zip |
Updated the Boost version I'm building with on OS X to 1.38.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 \ |