view move-if-change @ 97612:92ac38fd997e

Regenerate configure to get fixed autoconf mktime test Debian's autoconf package 2.61-7 includes a fix for the autoconf bug which caused AC_FUNC_MKTIME to hang for a long time when configuring. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1387
author Miles Bader <miles@gnu.org>
date Fri, 22 Aug 2008 08:32:49 +0000
parents 354e0c45cedf
children 14a97ab281d5
line wrap: on
line source

#!/bin/sh
if
test -r $2
then
if
cmp $1 $2 > /dev/null
then
echo $2 is unchanged
rm -f $1
else
mv -f $1 $2
fi
else
mv -f $1 $2
fi