diff options
author | John Wiegley <johnw@newartisans.com> | 2012-09-06 17:17:14 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-09-06 17:17:14 -0700 |
commit | e53f6b2c0579918d41b40606cf95411dfbb33df5 (patch) | |
tree | 51f45536a44be171f7db9efb58511821520b40fe | |
parent | d994c03292e351165eb97aa2781f551221d9e0f0 (diff) | |
parent | 5b916dae6c7cac78bb4a2100d814470fb7cd5649 (diff) | |
download | fork-ledger-e53f6b2c0579918d41b40606cf95411dfbb33df5.tar.gz fork-ledger-e53f6b2c0579918d41b40606cf95411dfbb33df5.tar.bz2 fork-ledger-e53f6b2c0579918d41b40606cf95411dfbb33df5.zip |
Merge pull request #77 from bkuhn/acprep-wrong-cmake-install-prefix
Correct cmake variable for install prefix is "CMAKE_INSTALL_PREFIX", not "CMAKE_PREFIX_PATH".
-rwxr-xr-x | acprep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -847,7 +847,7 @@ class PrepareBuild(CommandLineApp): self.options.boost_include) if self.prefix_directory(): - conf_args.append('-DCMAKE_PREFIX_PATH=%s' % self.prefix_directory()) + conf_args.append('-DCMAKE_INSTALL_PREFIX=%s' % self.prefix_directory()) return (environ, conf_args + self.configure_args) |