summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap11
1 files changed, 11 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index e72dad6..4653877 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,3 +1,14 @@
#!/bin/sh
+progs="autoconf automake autopoint libtoolize pkg-config"
+
+for p in ${progs}; do
+ if test -z "$(${p} --version 2>/dev/null)"; then
+ echo "Please install ${p}"
+ result=1
+ fi
+done
+
+[ -z ${result} ] || exit 1
+
exec autoreconf -f -i
OpenPOWER on IntegriCloud