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 5 6 6 ./autogen.sh || exit 1 7 7 8 8 if [ ! -x configure ]; then 9 9 exit 1 10 10 fi 11 11 12 -rm -rf autom4te.cache vpn/nrlssc/vpngui/build/ 13 - 14 12 for basefile in install-sh config.sub config.guess; do 15 13 for path in /usr/share/automake-*; do 16 14 file="${path}/${basefile}" 17 15 if [ -f "${file}" ]; then 18 16 cp "${file}" . 19 17 chmod 755 "./${basefile}" 20 18 21 19 break 22 20 fi 23 21 done 24 22 done 23 + 24 +if [ "${SNAPSHOT}" != "1" ]; then 25 + mv build build_delete 26 +fi 27 + 28 +exit 0