Update of /cvsroot/libexif/gexif
In directory usw-pr-cvs1:/tmp/cvs-serv8381
Modified Files:
autogen.sh
Log Message:
gettext 0.10 does not add automagically the intl/ directory
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libexif/gexif/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- autogen.sh 30 Sep 2002 07:16:32 -0000 1.3
+++ autogen.sh 30 Sep 2002 12:25:39 -0000 1.4
@@ -124,6 +124,9 @@
grep "intl/Makefile" configure.in > /dev/null ||
( sed -e 's#^AC_OUTPUT(\[#AC_OUTPUT(\[ intl/Makefile po/Makefile.in#' \
configure.in >configure.in.new && mv configure.in.new configure.in )
+ grep "SUBDIRS.*intl" Makefile.am > /dev/null ||
+ ( sed -e 's#\(^SUBDIRS.*\)$#\1 intl#' Makefile.am >Makefile.am.new \
+ && mv Makefile.am.new Makefile.am )
esac
echo "Cleaning stuff generated by aclocal"
|