From ab7875c11cce869ccee322c78ce609f2dab365d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Tue, 9 Jun 2015 11:36:05 +0100 Subject: buildsystem.py: some autotools projects use a script called bootstrap[.sh] ... instead the more common autogen[.sh] Change-Id: I3d797581708ffaefd1a1d4880253cfc2a3f5aa85 --- morphlib/buildsystem.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'morphlib') 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"', ] -- cgit v1.2.1