summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 92535fca1..5723c1c44 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -1,8 +1,5 @@
#!/bin/sh
-
-subdirs=" if"
-
./cleanup.sh
autoscan || exit 1
@@ -17,13 +14,3 @@ fi
autoconf
automake -ac --add-missing --foreign || exit 1
-
-for subdir in ${subdirs}; do
- if [ -x "${subdir}/bootstrap.sh" ]; then
- cwd="`pwd`"
- cd "${subdir}"
- ./bootstrap.sh
- cd "${cwd}"
- fi
-done
-