X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=build%2Finstall-includes;h=f403fd3720ed84a33f943519bf12cfe4577b8325;hb=d9c55a4d021b4a317a25f14f89468d62592aae0b;hp=1737b46ab59140d105d29ce8f811c931e805c4fa;hpb=988f7b23856aa4154cfd9022edd684a0ba1bc24a;p=libucw.git diff --git a/build/install-includes b/build/install-includes index 1737b46a..f403fd37 100755 --- a/build/install-includes +++ b/build/install-includes @@ -10,7 +10,7 @@ while [ -n "$1" ] ; do 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 + sed -e 's/^\(#include[ ]*\)"\(.*\)"/\1<\2>/' <$SRC/$1 >$DEST/$1 fi shift done