summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-06-09 11:36:05 +0100
committerBaserock Gerrit <gerrit@baserock.org>2015-09-25 15:13:43 +0000
commitab7875c11cce869ccee322c78ce609f2dab365d6 (patch)
tree8573c14fc7f5f3a798f9c2f767a9deb6213412ac
parentb64bdc52c6158ae6aca62baaf68d8fb66687a37b (diff)
downloadmorph-ab7875c11cce869ccee322c78ce609f2dab365d6.tar.gz
buildsystem.py: some autotools projects use a script called bootstrap[.sh]
... instead the more common autogen[.sh] Change-Id: I3d797581708ffaefd1a1d4880253cfc2a3f5aa85
-rw-r--r--morphlib/buildsystem.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 5096a7c4..d7fbaf73 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -117,6 +117,8 @@ class AutotoolsBuildSystem(BuildSystem):
'export NOCONFIGURE=1; ' +
'if [ -e autogen ]; then ./autogen; ' +
'elif [ -e autogen.sh ]; then ./autogen.sh; ' +
+ 'elif [ -e bootstrap ]; then ./bootstrap; ' +
+ 'elif [ -e bootstrap.sh ]; then ./bootstrap.sh; ' +
'elif [ ! -e ./configure ]; then autoreconf -ivf; fi',
'./configure --prefix="$PREFIX"',
]