One more fix to fix-old-automake-files

This commit is contained in:
Andrey Bondrov 2014-09-19 01:37:56 +11:00
parent cdf95f6887
commit 78b935fac2
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
Summary: A GNU tool for automatically creating Makefiles Summary: A GNU tool for automatically creating Makefiles
Name: automake Name: automake
Version: 1.14.1 Version: 1.14.1
Release: 4 Release: 5
License: GPLv2+ License: GPLv2+
Group: Development/Other Group: Development/Other
Url: http://sources.redhat.com/automake/ Url: http://sources.redhat.com/automake/

View file

@ -12,4 +12,4 @@ find . -name configure.in |while read r; do
mv $r ${r/configure.in/configure.ac} mv $r ${r/configure.in/configure.ac}
done done
# And adjust any bogus Makefiles etc. that have a dependency on configure.in # And adjust any bogus Makefiles etc. that have a dependency on configure.in
find . -name "configure.*" -o -name "Makefile*" -o -name "*.m4" |xargs sed -i -e 's,configure\.in,configure.ac,g' find . -name "configure.*" -o -name "Makefile*" -o -name "*.m4" |xargs sed -i -e 's,configure\.in$,configure.ac,g'