From c9c97de7293d4c9e28c58909d3cbb7756f5e42ac Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 19 Dec 2019 17:59:33 -0800 Subject: [PATCH] browser(webkit): stop building with --touch-enable (#317) Turns out we can't build with touch on Mac yet. Disable for now. --- browser_patches/webkit/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser_patches/webkit/build.sh b/browser_patches/webkit/build.sh index 1cb3ebadb7..9f44a97623 100755 --- a/browser_patches/webkit/build.sh +++ b/browser_patches/webkit/build.sh @@ -7,13 +7,13 @@ cd "$(dirname $0)" cd "checkout" if [[ "$(uname)" == "Darwin" ]]; then - ./Tools/Scripts/build-webkit --release --touch-events + ./Tools/Scripts/build-webkit --release elif [[ "$(uname)" == "Linux" ]]; then # Check that WebKitBuild exists and is not empty. if ! [[ (-d ./WebKitBuild) && (-n $(ls -1 ./WebKitBuild/)) ]]; then yes | DEBIAN_FRONTEND=noninteractive ./Tools/Scripts/update-webkitgtk-libs fi - ./Tools/Scripts/build-webkit --gtk --release --touch-events MiniBrowser + ./Tools/Scripts/build-webkit --gtk --release MiniBrowser else echo "ERROR: cannot upload on this platform!" 1>&2 exit 1;