comparison autogen.sh @ 4988:12d853120b45 HEAD

Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
author Timo Sirainen <tss@iki.fi>
date Thu, 04 Jan 2007 02:53:33 +0200
parents d3342c78ed44
children 786556485e91
comparison
equal deleted inserted replaced
4987:7179db893d3e 4988:12d853120b45
1 aclocal 1 #!/bin/sh
2 autoheader 2
3 libtoolize --force 3 # If you've non-standard directories, set these
4 automake --add-missing 4 ACLOCAL_DIR=
5 autoconf 5 GETTEXT_DIR=
6
7 if test "$ACLOCAL_DIR" != ""; then
8 ACLOCAL="aclocal -I $ACLOCAL_DIR"
9 export ACLOCAL
10 fi
11
12 autoreconf -i -f
13
14 for dir in $GETTEXT_DIR /usr/share/gettext; do
15 if test -f $dir/config.rpath; then
16 /bin/cp -f $dir/config.rpath .
17 break
18 fi
19 done
20