summaryrefslogtreecommitdiff
path: root/intltoolize.in
diff options
context:
space:
mode:
Diffstat (limited to 'intltoolize.in')
-rw-r--r--intltoolize.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/intltoolize.in b/intltoolize.in
index 8e93c87..4681793 100644
--- a/intltoolize.in
+++ b/intltoolize.in
@@ -196,8 +196,7 @@ if test -z "$automake"; then
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 @@ for file in $files; do
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