summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-05-10 04:11:50 -0500
committerJohn Wiegley <johnw@newartisans.com>2012-05-10 04:11:50 -0500
commit6a18669aa0f623d7ae9fe867d739f3c9632fa22e (patch)
tree4cd8b300601eb675850c3666a43bca0f3c648c00 /acprep
parenta53f5c1136a3f7ed7df5a74921ab05553a44fc7a (diff)
downloadfork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.tar.gz
fork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.tar.bz2
fork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.zip
An acprep simplification
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep4
1 files changed, 2 insertions, 2 deletions
diff --git a/acprep b/acprep
index 1d0b5bc5..c0846488 100755
--- a/acprep
+++ b/acprep
@@ -1019,14 +1019,14 @@ class PrepareBuild(CommandLineApp):
def setup_for_johnw(self):
self.envvars['PYTHON'] = '/opt/local/bin/python'
self.envvars['PYTHON_HOME'] = '/opt/local'
- self.envvars['CXX'] = '/Users/johnw/bin/cxx'
- self.envvars['LD'] = '/Users/johnw/bin/cxx'
self.boost_info.configured = True # cxx does all this work for me
self.boost_info.no_includes = True
if self.options.use_cpp11:
self.CXXFLAGS.append('-std=c++11')
+ self.envvars['CXX'] = '/Users/johnw/bin/cxx'
+ self.envvars['LD'] = '/Users/johnw/bin/cxx'
if not self.options.use_clang:
self.CXXFLAGS.append('--gcc47')