summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@apache.org>2008-02-23 21:56:16 +0000
committerDavid Reiss <dreiss@apache.org>2008-02-23 21:56:16 +0000
commitdab2ad85dab534fb0488ce530d5231261c56487c (patch)
tree76aecbdbb5c31794511cf23c3cafa4489e66a874 /bootstrap.sh
parent132cc46d07a2b92f273b37f4c163b03a001f1a5a (diff)
downloadthrift-dab2ad85dab534fb0488ce530d5231261c56487c.tar.gz
Thrift: Clean up cleanup.sh and bootstrap.sh
Reviewed By: marc Test Plan: dreiss@dreiss-vmware:cleanup:thrift/if$ ../cleanup.sh dreiss@dreiss-vmware:cleanup:thrift/if$ git clean -nxd dreiss@dreiss-vmware:cleanup:thrift/if$ Revert Plan: ok git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665493 13f79535-47bb-0310-9956-ffa450edef68
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
-