Revision 15286,
552 bytes
checked in by ghudson, 24 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r15285,
which included commits to RCS files with non-trunk default branches.
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | if [ -f configure.in ]; then |
---|
4 | if grep "A[MC]_CONFIG_HEADER" configure.in >/dev/null; then |
---|
5 | if [ ! -f config.h.in ]; then |
---|
6 | echo "Running autoheader" |
---|
7 | autoheader || exit 1 |
---|
8 | fi |
---|
9 | fi |
---|
10 | if grep "AM_PROG_LIBTOOL" configure.in >/dev/null; then |
---|
11 | echo "Running libtoolize" |
---|
12 | libtoolize || exit 1 |
---|
13 | fi |
---|
14 | echo "Running aclocal $ACLOCAL_FLAGS" |
---|
15 | aclocal $ACLOCAL_FLAGS || exit 1 |
---|
16 | |
---|
17 | echo "Running autoconf $AUTOCONF_FLAGS" |
---|
18 | autoconf $AUTOCONF_FLAGS || exit 1 |
---|
19 | fi |
---|
20 | |
---|
21 | ./configure "$@" && ( echo ; echo "Now type \`make' to compile." ) |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.