diff options
author | Bradley M. Kuhn <bkuhn@ebb.org> | 2012-09-06 19:25:09 -0400 |
---|---|---|
committer | Bradley M. Kuhn <bkuhn@ebb.org> | 2012-09-06 20:31:48 -0400 |
commit | cd2fef1c0fbf15eb31e54d8c7d0de85a31352805 (patch) | |
tree | d7e1135dd62b72b8729c1ec51487b0506e5f1ce8 | |
parent | 779378288f639ca4530901631c2ee91b67d8e286 (diff) | |
download | fork-ledger-cd2fef1c0fbf15eb31e54d8c7d0de85a31352805.tar.gz fork-ledger-cd2fef1c0fbf15eb31e54d8c7d0de85a31352805.tar.bz2 fork-ledger-cd2fef1c0fbf15eb31e54d8c7d0de85a31352805.zip |
Correct cmake variable for install prefix is "CMAKE_INSTALL_PREFIX", not "CMAKE_PREFIX_PATH".
CMAKE_PREFIX_PATH is for searching for other programs, not for the place
to install this one. Based on acprep's --help, I think the intention was
to use CMAKE_INSTALL_PREFIX here.
-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) |