view move-if-change @ 5807:080c1762f7a1

Use CPPFLAGS when building modules. See xemacs-patches message <CAHCOHQn_3ca3-LoXVo+9rYn-dFPMh3mE2__dSWO5AH_Bsn1u9g@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Fri, 15 Aug 2014 10:39:19 -0600
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