summaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-13 04:13:15 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-13 04:13:15 -0400
commite8df441c07582735fa5a53e79f75ab56d319a876 (patch)
tree9a41990507616f20296f55a7602019bb7af6227b /lib/Makefile
parent5f0b25ab9a33ee994c7db6841e60609e9b5d3a77 (diff)
downloadfork-ledger-e8df441c07582735fa5a53e79f75ab56d319a876.tar.gz
fork-ledger-e8df441c07582735fa5a53e79f75ab56d319a876.tar.bz2
fork-ledger-e8df441c07582735fa5a53e79f75ab56d319a876.zip
Don't build Boost with architecture=combined, since this excludes using
MacPort's Python (which I'm not able to build with +universal right now).
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index b23aa36f..808d1f8b 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -11,17 +11,18 @@ HERE = $(shell pwd)
all: boost-build cppunit-build # gdtoa
+# architecture=combined
boost-release:
(cd boost && \
bjam release -j3 --prefix=$(STOW_ROOT)/boost \
--build-dir=$(HERE)/boost/build --toolset=darwin \
- --build-type=complete architecture=combined install)
+ --build-type=complete install)
boost-debug:
(cd boost && \
bjam debug -j3 --prefix=$(STOW_ROOT)/boost \
--build-dir=$(HERE)/boost/build --toolset=darwin \
- --build-type=complete architecture=combined \
+ --build-type=complete \
define=_GLIBCXX_DEBUG=1 install)
boost-build: boost-release boost-debug