diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-31 05:20:41 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-31 05:20:41 -0400 |
commit | 599ef86e644e5fffbaede02b16a3d85ec6d94bd2 (patch) | |
tree | 8c4811da33221a17cfcba773b6a8eb59a589767e /acprep | |
parent | e0b5605dccacc2f790d1db24677a63c34fef3212 (diff) | |
download | fork-ledger-599ef86e644e5fffbaede02b16a3d85ec6d94bd2.tar.gz fork-ledger-599ef86e644e5fffbaede02b16a3d85ec6d94bd2.tar.bz2 fork-ledger-599ef86e644e5fffbaede02b16a3d85ec6d94bd2.zip |
Removed an unnecessary if statement in acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -976,9 +976,8 @@ class PrepareBuild(CommandLineApp): self.sys_include_dirs.remove('/usr/local/stow/cppunit/include') self.sys_library_dirs.remove('/usr/local/stow/cppunit/lib') - if exists('/usr/local/stow/cppunit-debug/include'): - self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit-debug/include') - self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit-debug/lib') + self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit-debug/include') + self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit-debug/lib') if exists('/opt/local/lib/libboost_regex-d.a'): self.envvars['BOOST_HOME'] = '/opt/local' |