view move-if-change @ 39111:c10fdb82dffd

(srcdir, texinputdir): New variables. (srcs, index.texi, install): Use $(srcdir). (.PHONY): Remove elisp.dvi. (elisp): Use -I switch for makeinfo. (elisp.dvi): Use $(srcdir) and $(texinputdir). (installall, dist): Use $(srcdir). Fix path to texinfo.tex. (maintainer-clean): Add elisp.dvi and elisp.oaux.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 04 Sep 2001 09:34:40 +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