[Webkit-unassigned] [Bug 33542] [Qt] Split the build process in two different .pro files.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 13 05:44:32 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=33542





--- Comment #12 from Csaba Osztrogonac <ossy at webkit.org>  2010-01-13 05:44:31 PST ---
I try it on my windows too, but unfortunately it isn't work, because
GENERATED_SOURCES_DIR changed to absolute path (with drive letter). Windows cd
command can't handle drive letters. It tolerates slashes instead of
backslashes, but it has problems with prefix slash as root directory.

before your patch:
perl -ne "print lc" ..\..\..\WebCore\css\CSSPropertyNames.in
T:/webkit_org/WebCore/css/SVGCSSPropertyNames.in >
generated\release\CSSPropertyNames.in && cd generated\release && perl
T:/webkit_org/WebCore/css/makeprop.pl && del CSSPropertyNames.strip
CSSPropertyNames.in CSSPropertyNames.gperf

after your patch:
perl -ne "print lc" ..\..\WebCore\css\CSSPropertyNames.in
T:/webkit_org/WebCore/css/DashboardSupportCSSPropertyNames.in
T:/webkit_org/WebCore/css/SVGCSSPropertyNames.in >
T:/webkit_org/WebCore/generated/CSSPropertyNames.in && cd
T:/webkit_org/WebCore/generated && perl T:/webkit_org/WebCore/css/makeprop.pl
&& del CSSPropertyNames.in CSSPropertyNames.gperf
The system cannot find the path specified.
mingw32-make: *** [../../WebCore/generated/CSSPropertyNames.cpp] Error 1
Failed to generate derived sources!

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list