summaryrefslogtreecommitdiffstats
path: root/common/autobloat
diff options
context:
space:
mode:
authorSam Varshavchik2013-08-25 14:43:26 -0400
committerSam Varshavchik2013-08-25 14:43:52 -0400
commita00fd90cded04581b53d107f07ad2ff4e83384b3 (patch)
tree6525d7dfa86d4a84bca3b3ed188b7e54636e68d9 /common/autobloat
parent3587050bb0729dfc8759a84e7ffbc860662b1b25 (diff)
downloadcourier-libs-a00fd90cded04581b53d107f07ad2ff4e83384b3.tar.bz2
Renamed configure.in to configure.ac
Diffstat (limited to 'common/autobloat')
-rw-r--r--common/autobloat16
1 files changed, 8 insertions, 8 deletions
diff --git a/common/autobloat b/common/autobloat
index 0a69ef1..e04943e 100644
--- a/common/autobloat
+++ b/common/autobloat
@@ -5,7 +5,7 @@ export LC_ALL
doit() {
- if test ! -f configure.in
+ if test ! -f configure.ac
then
for d in */.
do
@@ -24,21 +24,21 @@ echo `pwd`:
fi
fi
- if grep -q LT_INIT configure.in
+ if grep -q LT_INIT configure.ac
then
- libtoolize --force --copy `if grep -q LIBLTDL configure.in ; then echo --ltdl; fi`
+ libtoolize --force --copy `if grep -q LIBLTDL configure.ac ; then echo --ltdl; fi`
else
- if grep -q PROG_LIBTOOL configure.in
+ if grep -q PROG_LIBTOOL configure.ac
then
- libtoolize --force --copy `if grep -q LIBLTDL configure.in ; then echo --ltdl; fi`
+ libtoolize --force --copy `if grep -q LIBLTDL configure.ac ; then echo --ltdl; fi`
fi
fi
aclocal || exit 1
- if grep -q AM_CONFIG_HEADER configure.in
+ if grep -q AM_CONFIG_HEADER configure.ac
then
autoheader || exit 1
fi
- if grep -q AC_PROG_SYSCONFTOOL configure.in
+ if grep -q AC_PROG_SYSCONFTOOL configure.ac
then
sysconftoolize || exit 1
fi
@@ -61,7 +61,7 @@ echo `pwd`:
fi
for d in $subdirs
do
- if test -f "$d/configure.in"
+ if test -f "$d/configure.ac"
then
( cd $d >/dev/null 2>&1 || continue; doit ) || exit 1
fi