| 
1
2
3
4
5
6
7
8
9
10
11
12
13 | 
#! /bin/sh
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 1find . -type f -name '.*.sw?' | xargs rm -ffind . -type f -name '.nfs*' | xargs rm -ffind . -type f -name '*~' | xargs rm -f | 
<
<
<
<
 | 
1
2
3
4
5
6
7
8
9
 | 
#! /bin/sh
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
 |