RESOLVED FIXED 122357
Teach webkitdirs.pm to honor the --64-bit flag
https://bugs.webkit.org/show_bug.cgi?id=122357
Summary Teach webkitdirs.pm to honor the --64-bit flag
Brent Fulgham
Reported 2013-10-04 16:02:44 PDT
The webkitdirs.pm module always inserts the "--32-bit" build flag into the list of arguments. This prevents a 64-bit build on Windows, even when you explicitly pass the "--64-bit" flag. This patch modifies the WebKit Perl modules to not override the user's explicit build target input.
Attachments
Patch (2.65 KB, patch)
2013-10-04 16:10 PDT, Brent Fulgham
ddkilzer: review+
Brent Fulgham
Comment 1 2013-10-04 16:10:53 PDT
David Kilzer (:ddkilzer)
Comment 2 2013-10-04 16:29:37 PDT
Comment on attachment 213414 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=213414&action=review r=me > Tools/Scripts/webkitdirs.pm:886 > + return $#matchingIndices > -1; I think this might be clearer: return scalar @matchingIndices > 0; Or: return scalar @matchingIndices;
Brent Fulgham
Comment 3 2013-10-04 16:33:19 PDT
Brent Fulgham
Comment 4 2013-10-04 16:57:41 PDT
Please be sure to also include the small follow-up change: Committed r156928: <http://trac.webkit.org/changeset/r156928 >
Radar WebKit Bug Importer
Comment 5 2013-10-04 16:57:57 PDT
Note You need to log in before you can comment on or make changes to this bug.