view move-if-change @ 5599:d88edf8f3b88

2011-11-21 Marcus Crestani <crestani@informatik.uni-tuebingen.de> * configure: Regenerate with Autoconf 2.68. Default Autoconf 2.61 that comes with Mac OS X Lion breaks configure's ability to create Makefiles.
author Marcus Crestani <crestani@informatik.uni-tuebingen.de>
date Mon, 21 Nov 2011 11:35:22 +0100
parents 376386a54a3c
children
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