|
From: <as...@us...> - 2002-10-27 10:44:50
|
Update of /cvsroot/libexif/exif
In directory usw-pr-cvs1:/tmp/cvs-serv11317
Modified Files:
autogen.sh
Log Message:
don't use copy, use symlinks
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libexif/exif/autogen.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- autogen.sh 25 Oct 2002 15:06:35 -0000 1.8
+++ autogen.sh 27 Oct 2002 10:44:46 -0000 1.9
@@ -126,8 +126,8 @@
( sed -e 's#\(^SUBDIRS.*\) intl#\1#' Makefile.am >Makefile.am.new \
&& mv Makefile.am.new Makefile.am )
- echo "Running gettextize --copy $gettext_opt"
- gettextize --copy $gettext_opt || fail
+ echo "Running gettextize $gettext_opt"
+ gettextize $gettext_opt || fail
if test -f po/Makevars.template
then
cp po/Makevars.template po/Makevars
@@ -146,8 +146,8 @@
echo "Cleaning stuff generated by libtoolize"
rm -f ltmain.sh config.guess config.sub
- echo "Running libtoolize --copy"
- libtoolize --copy || fail
+ echo "Running libtoolize"
+ libtoolize || fail
echo "Cleaning stuff generated by aclocal"
rm -f aclocal.m4
|