summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-11-13 10:22:37 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-11-13 10:23:39 +0000
commitbd58d7bd96a35805e9e55a520250fcb369633d97 (patch)
treec55b9fbf665dc2df2b0690267a78bd848ba7c4c9 /morphlib/buildsystem.py
parent2ac6f661130322e63b8d2737145ea11d445aaa79 (diff)
downloadmorph-bd58d7bd96a35805e9e55a520250fcb369633d97.tar.gz
Revert "Merge remote-tracking branch 'origin/jonathanmaw/autotools-sysconfdir'"water-bomb
cmake has a ./configure, which accepts --prefix, but chokes on --sysconfdir This means that bootstrap is broken by this commit. This reverts commit 5f22ded9711a047704fc91b68a182b057e29bc0f, reversing changes made to e13753d4f3e26f3a4c705fb3e694ae8dea860c2d.
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 98aa2219..6287063a 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -103,7 +103,7 @@ class AutotoolsBuildSystem(BuildSystem):
'if [ -e autogen ]; then ./autogen; ' +
'elif [ -e autogen.sh ]; then ./autogen.sh; ' +
'elif [ ! -e ./configure ]; then autoreconf -ivf; fi',
- './configure --prefix="$PREFIX" --sysconfdir=/etc',
+ './configure --prefix="$PREFIX"',
]
self.build_commands = [
'make',