Update of /cvsroot/libexif/gexif
In directory usw-pr-cvs1:/tmp/cvs-serv13127
Modified Files:
autogen.sh
Log Message:
really cleans what comes out automake
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libexif/gexif/autogen.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- autogen.sh 27 Oct 2002 10:45:11 -0000 1.7
+++ autogen.sh 30 Oct 2002 15:52:29 -0000 1.8
@@ -165,7 +165,7 @@
find . -name '*.am' |
while read file
do # remove all .in files with a corresponding .am file
- rm -f "$(sed s/\.am$/.in/g)"
+ rm -f $(echo "$file" | sed s/\.am\$/.in/g)
done
rm -f depcomp install-sh missing mkinstalldirs
rm -f stamp-h* libgphoto2/stamp-h*
|