summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-09-06 17:17:14 -0700
committerJohn Wiegley <johnw@newartisans.com>2012-09-06 17:17:14 -0700
commite53f6b2c0579918d41b40606cf95411dfbb33df5 (patch)
tree51f45536a44be171f7db9efb58511821520b40fe
parentd994c03292e351165eb97aa2781f551221d9e0f0 (diff)
parent5b916dae6c7cac78bb4a2100d814470fb7cd5649 (diff)
downloadfork-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-xacprep2
1 files changed, 1 insertions, 1 deletions
diff --git a/acprep b/acprep
index 1c05596f..83ff4ab2 100755
--- a/acprep
+++ b/acprep
@@ -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)