summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-04-23 11:15:13 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-04-23 11:15:13 +0000
commitc620b71480d9d05b99b5c22a010dadb2948ea2bf (patch)
treeeb9b1da3fbc0b7c12e3887e8350f226210d3f85f /morphlib/buildsystem.py
parent701f3a2c298a62d6264b161bff73ec0b761f023f (diff)
downloadmorph-c620b71480d9d05b99b5c22a010dadb2948ea2bf.tar.gz
PythonDistutilsBuildSystem: set --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 8847ab4c..ab12e730 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -139,7 +139,7 @@ class PythonDistutilsBuildSystem(BuildSystem):
self.test_commands = [
]
self.install_commands = [
- 'python setup.py install --root "$DESTDIR"',
+ 'python setup.py install --prefix "$PREFIX" --root "$DESTDIR"',
]
def used_by_project(self, exists):