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
commit1cdcdf4cf045cb212be22dfedac281dd13fa988d (patch)
treea575cceab2502dd1a7313303541891c9cdbb6558
parent4a2180bade54318d62559601c52c51cef43f8cbe (diff)
downloaddefinitions-1cdcdf4cf045cb212be22dfedac281dd13fa988d.tar.gz
migrations/007-initial-defaults: Add bootstrap[.sh] check to autotools
Change-Id: I3585977e49e19a6ec26d30a725d2de936e15a228
-rw-r--r--migrations/007-initial-defaults2
1 files changed, 2 insertions, 0 deletions
diff --git a/migrations/007-initial-defaults b/migrations/007-initial-defaults
index 826ec8d0..f08ed3ea 100644
--- a/migrations/007-initial-defaults
+++ b/migrations/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"