NEW 10758
REGRESSION: WebCore doesn't build with spaces in the path
https://bugs.webkit.org/show_bug.cgi?id=10758
Summary REGRESSION: WebCore doesn't build with spaces in the path
mitz
Reported 2006-09-06 11:49:34 PDT
macbook-pro:/Web Kit mitz$ WebKitTools/Scripts/build-webkit --debug [...] make: *** No rule to make target `JSHTMLInputElementBaseTable.cpp', needed by `all'. Stop. ** BUILD FAILED ** That's coming from the script phase in the DerivedSources target in WebCore, which does 'make -f "WebCore/DerivedSources.make"'.
Attachments
mitz
Comment 1 2006-09-14 00:20:34 PDT
The error is caused by the CREATE_HASH_TABLE variable (which is the absolute path to the create_hash_table script) containing spaces. I guess they should be escaped or quoted somehow, either in the makefile or in the script phase in the project (which exports this variable).
Alexey Proskuryakov
Comment 2 2006-11-18 05:58:44 PST
To fix CREATE_HASH_TABLE, one can simply make it a relative path: export CREATE_HASH_TABLE="../../JavaScriptCore.framework/PrivateHeaders/create_hash_table" However, WebKit build (MigrateHeaders.make) is also broken, and needs some reworking to be fixed.
Stephanie Lewis
Comment 3 2007-01-27 20:02:41 PST
Maciej Stachowiak
Comment 4 2007-02-07 04:53:42 PST
Not a P1, since this doesn't affect the actual built product, just build tools.
David Kilzer (:ddkilzer)
Comment 5 2007-11-04 22:38:11 PST
If the Xcode SYMROOTS directory is set to a path without spaces in it (but the WebKit source path has spaces), the build will currently work (as of r27427). However, if an Xcode SYMROOTS directory is not set and it defaults to WebKit/WebKitBuild, one of the build phases in WebCore that uses a Makefile will fail.
Alexey Proskuryakov
Comment 6 2009-04-10 01:21:45 PDT
*** Bug 25115 has been marked as a duplicate of this bug. ***
Note You need to log in before you can comment on or make changes to this bug.