summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/buildsystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 3e50b50b..bd7db930 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -99,7 +99,7 @@ class AutotoolsBuildSystem(BuildSystem):
def __init__(self):
self.configure_commands = [
- 'if [ -e autogen.sh ]; then ./autogen.sh; ' +
+ 'NOCONFIGURE=1; if [ -e autogen.sh ]; then ./autogen.sh; ' +
'elif [ ! -e ./configure ]; then autoreconf -ivf; fi',
'./configure --prefix="$PREFIX"',
]