repo.or.cz
/
amiethrift.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1373@opsdev009 (orig r71680): mcslee | 2007-11-27 21:54:33 -0800
[amiethrift.git]
/
bootstrap.sh
blob
c73e709da98353203bacb81bba3a523af58e5981
1
#!/bin/sh
2
3
subdirs
=
"compiler/cpp lib/cpp lib/py if"
4
5
.
/
cleanup.sh
6
7
aclocal
8
touch
NEWS README AUTHORS ChangeLog
9
autoconf
10
automake
-ac
11
12
for
subdir
in
${subdirs}
;
do
13
if
[
-x
"
${subdir}
/bootstrap.sh"
];
then
14
cwd
=
"`pwd`"
15
cd
"
${subdir}
"
16
.
/
bootstrap.sh
17
cd
"
${cwd}
"
18
fi
19
done
20