intltool r744 - trunk



Author: dobey
Date: Fri Jul 25 15:48:39 2008
New Revision: 744
URL: http://svn.gnome.org/viewvc/intltool?rev=744&view=rev

Log:
2008-07-25  Rodney Dawes  <dobey pwns gmail com>

	* intltoolize.in:
	Check for symlinks to intltool scripts and remove them
	Touch the script.in files for compatibility
	We just touch the scripts as we no longer generate executable versions,
	and the Makefile.in.in uses the installed scripts anyway.



Modified:
   trunk/ChangeLog
   trunk/intltoolize.in

Modified: trunk/intltoolize.in
==============================================================================
--- trunk/intltoolize.in	(original)
+++ trunk/intltoolize.in	Fri Jul 25 15:48:39 2008
@@ -196,8 +196,7 @@
 fi
 
 
-
-# Change to the auxiliary directory.
+# Copy or symlink the Makefile.in.in
 (
 for file in $files; do
   if test -f "$file" && test -z "$force"; then
@@ -212,6 +211,11 @@
     echo "$progname: cannot copy '$pkgdatadir/`basename $file`' to '$file'" 1>&2
     status=1
   fi
+# Touch script names for backward compatibility
+  for script in intltool-extract.in intltool-merge.in intltool-update.in; do
+      if test -h $script; then rm -f $script; fi
+      touch $script
+  done
 done
 
 exit $status



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]