diff options
author | David Zeuthen <davidz@redhat.com> | 2008-11-11 08:24:54 -0500 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2008-11-11 08:24:54 -0500 |
commit | b7a56fc0dd4e6aae2887da0fffc7f60a0ec0839a (patch) | |
tree | ab8065d3b35599671c70033b1ecfb79c300a5dff | |
parent | 61fad487bace7114a9308db7106085ac128bbda1 (diff) |
also rename configure.in to configure.ac in autogen.sh
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -65,7 +65,7 @@ esac aclocalinclude="$ACLOCAL_FLAGS" - if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then + if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." libtoolize --force --copy @@ -73,11 +73,11 @@ esac fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude - if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then + if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then echo "Running autoheader..." autoheader fi - echo "Running automake --gnu -Wno-portability $am_opt ..." + echo "Running automake --add-missing --gnu -Wno-portability $am_opt ..." automake --add-missing --gnu -Wno-portability $am_opt echo "Running autoconf ..." autoconf |