annotate autogen.sh @ 4990:786556485e91 HEAD

Comment out the configurable dir environments.
author Timo Sirainen <tss@iki.fi>
date Thu, 04 Jan 2007 15:22:01 +0200
parents 12d853120b45
children d410ee18ae93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4988
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
1 #!/bin/sh
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
2
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
3 # If you've non-standard directories, set these
4990
786556485e91 Comment out the configurable dir environments.
Timo Sirainen <tss@iki.fi>
parents: 4988
diff changeset
4 #ACLOCAL_DIR=
786556485e91 Comment out the configurable dir environments.
Timo Sirainen <tss@iki.fi>
parents: 4988
diff changeset
5 #GETTEXT_DIR=
4988
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
6
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
7 if test "$ACLOCAL_DIR" != ""; then
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
8 ACLOCAL="aclocal -I $ACLOCAL_DIR"
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
9 export ACLOCAL
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
10 fi
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
11
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
12 autoreconf -i -f
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
13
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
14 for dir in $GETTEXT_DIR /usr/share/gettext; do
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
15 if test -f $dir/config.rpath; then
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
16 /bin/cp -f $dir/config.rpath .
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
17 break
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
18 fi
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
19 done
12d853120b45 Rewrite. Use autoreconf now. Also copy config.rpath from gettext's directory.
Timo Sirainen <tss@iki.fi>
parents: 3857
diff changeset
20