+2005-09-05 Bruno Haible <bruno@clisp.org>
+
+ * gnulib-tool (func_import): Fix comparison in handling of symbolic
+ links.
+
2005-09-04 Martin Lambers <marlam@marlam.de> (tiny change)
* modules/size_max (Makefile.am): Add size_max.h
2005-09-04 Derek Price <derek@ximbiot.com>
- * gnulib-tool: Fix reversed $symbolic logic.
+ * gnulib-tool (func_import): Fix reversed $symbolic logic.
2005-09-03 Simon Josefsson <jas@extundo.com>
progname=$0
package=gnulib
-cvsdatestamp='$Date: 2005-09-04 15:57:34 $'
+cvsdatestamp='$Date: 2005-09-05 11:40:42 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
# frequently that developers don't put autogenerated files into CVS.
echo "Copying file $g2"
test -n "$dry_run" && dry=echo
- if test -n "$symbolic" && cmp "$gnulib_dir/$f2" "$destdir/$g2.tmp"; then
+ if test -n "$symbolic" && cmp "$gnulib_dir/$f2" "$destdir/$g2.tmp" > /dev/null; then
func_ln_if_changed "$gnulib_dir/$f2" "$destdir/$g2"
else
$dry mv -f "$destdir/$g2.tmp" "$destdir/${g2}" || func_fatal_error "failed"