diff options
author | Martin Nordholts <enselic@gmail.com> | 2010-05-07 09:53:03 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-05-07 10:07:23 +0200 |
commit | ccc53b9a45f35af358d1387a6db14838d6977fd4 (patch) | |
tree | 3e791400d49f4f2aadece5412ab67d3ef5ef88f7 /sanity_check | |
parent | 3781b2447610601d778ef44489341712af58cf54 (diff) | |
download | gtk+-ccc53b9a45f35af358d1387a6db14838d6977fd4.tar.gz |
Rename configure.in to configure.ac
In the autoconf manual the recomended name for the autoconf input file
is configure.ac and not configure.in. Follow this recomendation.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=598768
Diffstat (limited to 'sanity_check')
-rwxr-xr-x | sanity_check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sanity_check b/sanity_check index 84daf9b904..182d4260a1 100755 --- a/sanity_check +++ b/sanity_check @@ -37,8 +37,8 @@ else exit 1 fi -echo -n "configure.in..." -if [ "x`grep $VERSION gtk+-$VERSION/configure.in | wc -l | awk -F' ' '{print $1}'`" == "x2" ]; then +echo -n "configure.ac..." +if [ "x`grep $VERSION gtk+-$VERSION/configure.ac | wc -l | awk -F' ' '{print $1}'`" == "x2" ]; then echo "ok" else echo "failed." |