Mercurial > emacs
view move-if-change @ 84328:c5789597edd9
Move the parts of the old man/makefile.w32-in that do not refer to the
Emacs manual here.
(infodir, MULTI_INSTALL_INFO, ENVADD): Go up one more level.
(../etc/GNU): Delete obsolete target.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 06 Sep 2007 05:08:13 +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