view move-if-change @ 5770:f22989bb7632

Check (featurep 'font-mgr) before calling fontconfig functions, tests tests/ChangeLog addition: 2013-12-15 Aidan Kehoe <kehoea@parhasard.net> * automated/face-tests.el: Only test fontconfig if the font-mgr feature is available, avoid errors when it isn't.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 15 Dec 2013 10:38:19 +0000
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