+2007-01-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * tests/defs.in (is_newest): Cope with multiple newer files.
+ * NEWS: mention `install-sh -C'.
+
2006-12-25 Paul Eggert <eggert@cs.ucla.edu>
* lib/install-sh (initialize_posix_glob): New var.
* Miscellaneous changes:
- New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
+
+ - install-sh supports -C, which does not update the installed file
+ (and its time stamps) if the contents did not change.
+
\f
New in 1.10:
# @configure_input@
#
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006 Free Software Foundation, Inc.
+# 2005, 2006, 2007 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
# Resolve ties in favor of FILE.
is_newest ()
{
- test x`find "$@" -newer "$1"` = x
+ is_newest_files=`find "$@" -newer "$1"`
+ test -z "$is_newest_files"
}