diff options
author | John Wiegley <johnw@newartisans.com> | 2012-05-10 04:11:50 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-05-10 04:11:50 -0500 |
commit | 6a18669aa0f623d7ae9fe867d739f3c9632fa22e (patch) | |
tree | 4cd8b300601eb675850c3666a43bca0f3c648c00 /acprep | |
parent | a53f5c1136a3f7ed7df5a74921ab05553a44fc7a (diff) | |
download | fork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.tar.gz fork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.tar.bz2 fork-ledger-6a18669aa0f623d7ae9fe867d739f3c9632fa22e.zip |
An acprep simplification
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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') |