diff options
author | John Wiegley <johnw@newartisans.com> | 2010-01-17 16:50:20 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-01-17 16:50:20 -0500 |
commit | b3a3ecccf2e8ddaab79b58fb68b134a39d29c395 (patch) | |
tree | ebfb578ab040c3850244c6ef5b11a8658f2d5036 | |
parent | d176abf6254cd209d712009f3b3b807fbb6a0b12 (diff) | |
download | ledger-b3a3ecccf2e8ddaab79b58fb68b134a39d29c395.tar.gz ledger-b3a3ecccf2e8ddaab79b58fb68b134a39d29c395.tar.bz2 ledger-b3a3ecccf2e8ddaab79b58fb68b134a39d29c395.zip |
Fixed the guard test for calling setup_for_johnw
-rwxr-xr-x | acprep | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -863,7 +863,7 @@ class PrepareBuild(CommandLineApp): self.CXXFLAGS.append('-pthread') elif system == 'Darwin': - if exists('/Users/johnw/Dropbox/Accounts/ledger.dat'): + if exists('/Users/johnw/Projects/ledger/plan/TODO'): self.setup_for_johnw() self.locate_darwin_libraries() @@ -1065,9 +1065,8 @@ class PrepareBuild(CommandLineApp): def locate_darwin_libraries(self): if self.current_flavor == 'debug' or self.current_flavor == 'gcov': - self.log.debug('We are using GLIBCXX_DEBUG, so setting up flags') - if self.options.use_glibcxx_debug: + self.log.debug('We are using GLIBCXX_DEBUG, so setting up flags') self.CPPFLAGS.append('-D_GLIBCXX_DEBUG=1') if self.check_for_boost(directory = '/usr/local/stow/boost_1_41_0', |