summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-23 13:19:31 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-23 15:47:19 +0000
commit8a653a535f41249cf0b5cea098a3ca65641962a2 (patch)
tree3ebc3ecb3ad631e480ed23360e8404948b1b6866 /morphlib/buildsystem.py
parent2ff9dd7294f09179813b49920e11b57bbd945cda (diff)
downloadmorph-8a653a535f41249cf0b5cea098a3ca65641962a2.tar.gz
CPANBuildSystem: use destdir
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 045616e4..7b000876 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -166,7 +166,7 @@ class CPANBuildSystem(BuildSystem):
self.test_commands = [
]
self.install_commands = [
- 'make install',
+ 'make DESTDIR="$DESTDIR" install',
]
def used_by_project(self, exists):