Mercurial > emacs
view move-if-change @ 107458:d5b2d5a7cad9
* Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
don't do make there. When compiling with separate object dir, there
is no Makefile there.
author | Jan D. <jan.h.d@swipnet.se> |
---|---|
date | Mon, 22 Mar 2010 08:51:19 +0100 |
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