Overview
Comment: | Updated to leave build directory intact on snapshot |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 1fed88b8b1270b7dfb67bae93290a334195ae8b6 |
User & Date: | rkeene on 2010-07-21 21:33:18 |
Other Links: | manifest | tags |
Context
2010-07-22
| ||
07:45 |
Updated OSX CACKey build script to support more descriptive package names.
Updated PackageMaker Document XML files for OSX CACKey build to be better formatted. check-in: 284fc537fc user: kvanals tags: trunk | |
2010-07-21
| ||
21:33 | Updated to leave build directory intact on snapshot check-in: 1fed88b8b1 user: rkeene tags: trunk | |
21:21 |
Updated to allow use of protocol T=0 or protocol T=1
Fixed minor warning in debug mode check-in: d85f1a762d user: rkeene tags: trunk | |
Changes
Modified build/build.sh from [a5d6721e9d] to [3d66d77fa6].
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 |
Modified build/makearch.info from [31c5bfbd6a] to [921db724fc].
32 33 34 35 36 37 38 39 |
BEFORE="build/build.sh" # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted TMPS="*.out HEADER work .project_aliases build *~ *.tmp" |
| |
32 33 34 35 36 37 38 39 |
BEFORE="build/build.sh"
# This script is executed immediately prior to creation of the
# tarball
AFTER=""
# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER work .project_aliases build_delete *~ *.tmp"
|