summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-23 15:35:15 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-23 15:47:19 +0000
commitde61437aae79c4f9f9f5d0d90b25eda798133b42 (patch)
tree570ad377d14192acc8264869cc6454a3ba07cc8a /morphlib/buildsystem.py
parentd210fb09bb0becb69975e92f42d16260d4d23933 (diff)
downloadmorph-de61437aae79c4f9f9f5d0d90b25eda798133b42.tar.gz
CPANBuildSystem: use $PREFIX
Diffstat (limited to 'morphlib/buildsystem.py')
-rw-r--r--morphlib/buildsystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 7b000876..799f35cc 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -158,7 +158,7 @@ class CPANBuildSystem(BuildSystem):
def __init__(self):
self.configure_commands = [
- 'perl Makefile.PL',
+ 'perl Makefile.PL INSTALL_BASE="$PREFIX"',
]
self.build_commands = [
'make',