summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-31 05:20:41 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-31 05:20:41 -0400
commit599ef86e644e5fffbaede02b16a3d85ec6d94bd2 (patch)
tree8c4811da33221a17cfcba773b6a8eb59a589767e /acprep
parente0b5605dccacc2f790d1db24677a63c34fef3212 (diff)
downloadfork-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-xacprep5
1 files changed, 2 insertions, 3 deletions
diff --git a/acprep b/acprep
index 371c5e48..e93ed344 100755
--- a/acprep
+++ b/acprep
@@ -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'