view move-if-change @ 110312:9ac0232d85db

* lisp/emacs-lisp/bytecomp.el (byte-compile-file): Tweak previous change. Write out the name of the .elc file, rather than the temp-file.
author Glenn Morris <rgm@gnu.org>
date Sat, 11 Sep 2010 12:33:52 -0700
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