Check-in [a0551b52f7]
Overview
Comment:Updated snapshot to give build an updated version number
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: a0551b52f735d9bb4f2711ae076b8e3fc883a474
User & Date: rkeene on 2010-07-23 05:56:25
Other Links: manifest | tags
Context
2010-07-23
07:08
Added forgotten Mac OS X PackageMaker contents files check-in: 5dc7094235 user: kvanals tags: trunk
05:56
Updated snapshot to give build an updated version number check-in: a0551b52f7 user: rkeene tags: trunk
2010-07-22
18:57
CACKey 0.5.16 check-in: a066a8770f user: rkeene tags: trunk, 0.5.16
Changes

Modified build/build.sh from [3d66d77fa6] to [74fa13ddae].

1
2
3
4






5
6
7
8
9
10
11
#! /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





>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh

find . -type f -name '.*.sw?' | xargs rm -f
find . -type f -name '.nfs*' | xargs rm -f

if [ "${SNAPSHOT}" = "1" ]; then
	sed "s@\(AC_INIT([^)]*\))@\1.${VERS})@" configure.ac > configure.ac.new
	cat configure.ac.new > configure.ac
	rm -f configure.ac.new
fi

./autogen.sh || exit 1

if [ ! -x configure ]; then
	exit 1
fi