mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
dab2ad85da
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
17 lines
339 B
Bash
Executable File
17 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./cleanup.sh
|
|
|
|
autoscan || exit 1
|
|
autoheader || exit 1
|
|
aclocal -I ./aclocal || exit 1
|
|
|
|
if libtoolize --version 1 >/dev/null 2>/dev/null; then
|
|
libtoolize --automake || exit 1
|
|
elif glibtoolize --version 1 >/dev/null 2>/dev/null; then
|
|
glibtoolize --automake || exit 1
|
|
fi
|
|
|
|
autoconf
|
|
automake -ac --add-missing --foreign || exit 1
|