diff options
author | John Wiegley <johnw@newartisans.com> | 2014-05-07 20:49:45 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2014-05-07 20:49:45 +0000 |
commit | 1aa0e03a9e7f9f1a51395a60fc1336bea3ca2aa9 (patch) | |
tree | 0e688725083f7be4610ec0a193cceadb05b1eb8d /acprep | |
parent | 73caafa2c540384f19669567ed95b598fcf42463 (diff) | |
download | fork-ledger-1aa0e03a9e7f9f1a51395a60fc1336bea3ca2aa9.tar.gz fork-ledger-1aa0e03a9e7f9f1a51395a60fc1336bea3ca2aa9.tar.bz2 fork-ledger-1aa0e03a9e7f9f1a51395a60fc1336bea3ca2aa9.zip |
Fix build for building with g++ 4.8
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -875,9 +875,9 @@ class PrepareBuild(CommandLineApp): if self.options.boost_include: conf_args.append('-DBOOST_INCLUDEDIR=%s' % self.options.boost_include) - if self.options.build_dir: - conf_args.append('-DBUILD_DIR=%s' % - self.options.build_dir) + # if self.options.build_dir: + # conf_args.append('-DBUILD_DIR=%s' % + # self.options.build_dir) if self.prefix_directory(): conf_args.append('-DCMAKE_INSTALL_PREFIX=%s' % self.prefix_directory()) |