Differences From Artifact [a5d6721e9d]:
- Executable file
build/build.sh
— part of check-in
[ce8b478d9d]
at
2010-05-20 20:36:01
on branch trunk
— CACKey 0.5.2
Updated to install scripts required by autoconf on release (user: rkeene, size: 436) [annotate] [blame] [check-ins using]
To Artifact [3d66d77fa6]:
- Executable file build/build.sh — part of check-in [1fed88b8b1] at 2010-07-21 21:33:18 on branch trunk — Updated to leave build directory intact on snapshot (user: rkeene, size: 457) [annotate] [blame] [check-ins using]
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
./autogen.sh || exit 1
if [ ! -x configure ]; then
exit 1
fi
rm -rf autom4te.cache vpn/nrlssc/vpngui/build/
for basefile in install-sh config.sub config.guess; do
for path in /usr/share/automake-*; do
file="${path}/${basefile}"
if [ -f "${file}" ]; then
cp "${file}" .
chmod 755 "./${basefile}"
break
fi
done
done
|
< < > > > > > > |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
./autogen.sh || exit 1 if [ ! -x configure ]; then exit 1 fi for basefile in install-sh config.sub config.guess; do for path in /usr/share/automake-*; do file="${path}/${basefile}" if [ -f "${file}" ]; then cp "${file}" . chmod 755 "./${basefile}" break fi done done if [ "${SNAPSHOT}" != "1" ]; then mv build build_delete fi exit 0 |