X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=build%2Finstall-includes;h=1737b46ab59140d105d29ce8f811c931e805c4fa;hb=35257848f97710b8107e20f690404cfaf0838f74;hp=33e2c9a9ffb15679d2f874313d9eb46063eb4622;hpb=78cf457b60ed515376ed6f668077be13c5036f10;p=libucw.git diff --git a/build/install-includes b/build/install-includes index 33e2c9a9..1737b46a 100755 --- a/build/install-includes +++ b/build/install-includes @@ -1,13 +1,13 @@ #!/bin/sh # A simple installer of include files -# (c) 2005 Martin Mares +# (c) 2005--2007 Martin Mares set -e SRC=$1 DEST=$2 shift 2 while [ -n "$1" ] ; do - if [ "$SRC/$1" -nt "$DEST/$1" ] ; then + if [ ! -f "$DEST/$1" -o "$SRC/$1" -nt "$DEST/$1" ] ; then echo "INC $SRC/$1 -> $DEST/$1" mkdir -p $DEST/`dirname $1` cp $SRC/$1 $DEST/$1