summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-11-08 17:53:58 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-11-08 17:53:58 +0000
commit5f22ded9711a047704fc91b68a182b057e29bc0f (patch)
treefb49767c0125b466bd2825e66d80ecd10b9642f8
parente13753d4f3e26f3a4c705fb3e694ae8dea860c2d (diff)
parent1740eb2ad69f41aab26b77e8309ba9dfa668ae43 (diff)
downloaddefinitions-5f22ded9711a047704fc91b68a182b057e29bc0f.tar.gz
Merge remote-tracking branch 'origin/jonathanmaw/autotools-sysconfdir'
Reviewed-by: Lars Wirzenius <lars.wirzenius@codethink.co.uk> Also-reviewed-by: Richard Maw <richard.maw@codethink.co.uk>
-rw-r--r--morphlib/buildsystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 6287063a..98aa2219 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"',
+ './configure --prefix="$PREFIX" --sysconfdir=/etc',
]
self.build_commands = [
'make',