+2007-08-26 Bruno Haible <bruno@clisp.org>
+
+ * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
+
2007-08-23 Simon Josefsson <simon@josefsson.org>
* lib/readline.c: Don't include getline.h, the prototype is now
progname=$0
package=gnulib
-cvsdatestamp='$Date: 2007-07-23 22:08:02 $'
+cvsdatestamp='$Date: 2007-08-26 10:31:22 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
nl='
echo "usage: func_ln_if_changed SRC DEST" >&2
fi
ln_target=`func_readlink "$2"`
- if test -L "$2" && test "$1" = "$ln_target"; then
+ if test -h "$2" && test "$1" = "$ln_target"; then
:
else
rm -f "$2"