mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-06 18:35:19 +00:00
4c91e55418
Summary: spaces in directory names should work Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665054 13f79535-47bb-0310-9956-ffa450edef68
22 lines
320 B
Bash
Executable File
22 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
|
|
subdirs="compiler/cpp lib/cpp lib/py"
|
|
|
|
./cleanup.sh
|
|
echo "SUBDIRS = ${subdirs}" > Makefile.am
|
|
|
|
aclocal
|
|
touch NEWS README AUTHORS ChangeLog
|
|
autoconf
|
|
automake -ac
|
|
|
|
for subdir in ${subdirs}; do
|
|
if [ -x "${subdir}/bootstrap.sh" ]; then
|
|
cwd="`pwd`"
|
|
cd "${subdir}"
|
|
./bootstrap.sh
|
|
cd "${cwd}"
|
|
fi
|
|
done
|
|
|