summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-11-04 00:08:21 -0600
committerJohn Wiegley <johnw@newartisans.com>2014-11-04 00:11:35 -0600
commit62e1354e0bb9bef2efaed14e3543199880026491 (patch)
treefa5a2958ea14d29b62dfe87554db9b604a839416 /acprep
parent085596ae0ed077fb3d10e58159508a936601de41 (diff)
downloadfork-ledger-62e1354e0bb9bef2efaed14e3543199880026491.tar.gz
fork-ledger-62e1354e0bb9bef2efaed14e3543199880026491.tar.bz2
fork-ledger-62e1354e0bb9bef2efaed14e3543199880026491.zip
Some minor changes
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep9
1 files changed, 3 insertions, 6 deletions
diff --git a/acprep b/acprep
index a6cadc7f..b0af2108 100755
--- a/acprep
+++ b/acprep
@@ -1,10 +1,7 @@
#!/usr/bin/env python
-# acprep, version 3.0
+# acprep, version 3.1
#
-# This script configures my ledger source tree on my Mac OS/X machine. This
-# is not necessary, however, since I keep all the files necessary for building
-# checked in to the source tree. Users can just type './configure && make'.
# This script simply sets up the compiler and linker flags for all the various
# build permutations I use for testing and profiling.
@@ -802,7 +799,7 @@ class PrepareBuild(CommandLineApp):
conf_args.append('-DCMAKE_CXX_FLAGS=%s' %
self.envvars[var])
elif var == 'LDFLAGS':
- conf_args.append('-DCMAKE_EXE_LINKER_FLAGS=%s' %
+ conf_args.append('-DCMAKE_EXE_LINKER_FLAGS=%s' %
self.envvars[var])
if self.options.boost_root:
@@ -895,7 +892,7 @@ class PrepareBuild(CommandLineApp):
self.log.debug('Changing directory to ' + build_dir)
os.chdir(build_dir)
- self.execute(*(['ninja' if self.options.use_ninja else 'make'] +
+ self.execute(*(['ninja' if self.options.use_ninja else 'make'] +
make_args))
finally:
os.chdir(self.source_dir)