Artifact a5d6721e9dc7a371f5dbf17514d6d29d37c2ecae:
- 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]
#! /bin/sh find . -type f -name '.*.sw?' | xargs rm -f find . -type f -name '.nfs*' | xargs rm -f ./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