Some .strip files are not generated anymore
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
Hi Artem, Please file a bug on http://bugs.webkit.org/. I'm not sure if this is an issue or not, but it won't hurt to track it there. Dave Artem Ananiev <Artem.Ananiev@Sun.COM> wrote:
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
Done. The bug ID is 14973: http://bugs.webkit.org/show_bug.cgi?id=14973 Thanks, Artem David D. Kilzer wrote:
Hi Artem,
Please file a bug on http://bugs.webkit.org/. I'm not sure if this is an issue or not, but it won't hurt to track it there.
Dave
Artem Ananiev <Artem.Ananiev@Sun.COM> wrote:
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
_______________________________________________ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev
participants (2)
-
Artem Ananiev
-
David D. Kilzer