Hi, all, in some of the recent WebKit changes in WebCore.pro I see the following diffs: -cssprops.commands = cp ${QMAKE_FILE_NAME} tmp && cd tmp && sh $$PWD/css/makeprop && rm ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf +cssprops.commands = $(COPY_FILE) ${QMAKE_FILE_NAME} tmp && cd tmp && perl $$PWD/css/makeprop.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf In a few words this means that `makeprop` shell script is changed/replaced with `makeprop.pl' perl one. One of the first lines in the old script generated the corresponding .strip file which was later removed with 'rm ${QMAKE_FILE_BASE}.strip'. The new perl script doesn't use this file, so while trying to remove it with 'rm' I get an error. This error occurs twice: for CSSValueKeywords.strip and CSSPropertyNames.strip. Is it a problem with my workspace? Thanks, Artem