summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
Diffstat (limited to 'boot')
-rw-r--r--boot15
1 files changed, 15 insertions, 0 deletions
diff --git a/boot b/boot
new file mode 100644
index 0000000000..aa906266f6
--- /dev/null
+++ b/boot
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+set -e
+
+autoreconf
+
+for lib in libraries/*; do
+ if test -e $lib/configure.ac
+ then
+ cd $lib
+ autoreconf
+ cd ../..
+ fi
+done
+