From: commit-queue@webkit.org Date: Mon, 16 Apr 2012 15:15:37 +0000 (+0000) Subject: build-webkit --gtk --no-webkit2 builds WK2 X-Git-Tag: 070512121124~6924 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d0249667d36770eeabb1a0f6d649960af398af3;p=profile%2Fivi%2Fwebkit-efl.git build-webkit --gtk --no-webkit2 builds WK2 https://bugs.webkit.org/show_bug.cgi?id=83977 Patch by Philippe Normand on 2012-04-16 Reviewed by Martin Robinson. * Scripts/build-webkit: Fixup ./configure option to disable WebKit2 build. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@114257 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 173e8f4..7383ad3 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,13 @@ +2012-04-16 Philippe Normand + + build-webkit --gtk --no-webkit2 builds WK2 + https://bugs.webkit.org/show_bug.cgi?id=83977 + + Reviewed by Martin Robinson. + + * Scripts/build-webkit: Fixup ./configure option to disable + WebKit2 build. + 2012-04-16 Sudarsana Nagineni [EFL] [DRT] Feeding key events with invalid keyName diff --git a/Tools/Scripts/build-webkit b/Tools/Scripts/build-webkit index 91f01ac..6ee9f12 100755 --- a/Tools/Scripts/build-webkit +++ b/Tools/Scripts/build-webkit @@ -711,8 +711,8 @@ for my $dir (@projects) { my $project = basename($dir); if (isGtk()) { - if (!$noWebKit2) { - unshift(@options, "--enable-webkit2"); + if ($noWebKit2) { + unshift(@options, "--disable-webkit2"); } $result = buildGtkProject($project, $clean, @options); } elsif (isAppleMacWebKit()) {