Mercurial > hg > xemacs-beta
view move-if-change @ 5690:7b5f88e5b456
Don't delete configure in modules on distclean
modules/ChangeLog
2012-10-15 Mats Lidell <matsl@xemacs.org>
* common/Makefile.common (distclean): Don't delete configure.
author | Mats Lidell <mats.lidell@cag.se> |
---|---|
date | Mon, 15 Oct 2012 20:47:00 +0200 |
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