summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-09-24 18:54:54 +0100
committerBaserock Gerrit <gerrit@baserock.org>2015-09-25 15:14:08 +0000
commit08e830dd4a5b3ee280a1672522169fff63fd5998 (patch)
tree61c330ae26519a93e169225150dd64fa6e75ecb5
parentdf897e41946769f89911687b6943c6fae9f10333 (diff)
downloadspec-08e830dd4a5b3ee280a1672522169fff63fd5998.tar.gz
migrations/007-initial-defaults: Add bootstrap[.sh] check to autotools
Change-Id: I3585977e49e19a6ec26d30a725d2de936e15a228
-rw-r--r--007-initial-defaults2
1 files changed, 2 insertions, 0 deletions
diff --git a/007-initial-defaults b/007-initial-defaults
index 826ec8d..f08ed3e 100644
--- a/007-initial-defaults
+++ b/007-initial-defaults
@@ -39,6 +39,8 @@ build-systems:
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"