Skip to content

Commit

Permalink
[GLIB] Update env var used to disable using flatpak to build
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=259116

Reviewed by Nikolas Zimmermann.

This env var is more clear in its purpose. WKDEV_SDK was used
by another script but was never an ideal choice.

* Tools/Scripts/webkitdirs.pm:
(shouldUseFlatpak):

Canonical link: https://commits.webkit.org/265955@main
  • Loading branch information
TingPing committed Jul 11, 2023
1 parent 8727e9c commit c66b20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Scripts/webkitdirs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2459,7 +2459,7 @@ sub shouldUseFlatpak()
return 0;
}

if ((defined $ENV{'WEBKIT_JHBUILD'} && $ENV{'WEBKIT_JHBUILD'}) or defined $ENV{'WKDEV_SDK'}) {
if ((defined $ENV{'WEBKIT_JHBUILD'} && $ENV{'WEBKIT_JHBUILD'}) or defined $ENV{'WEBKIT_BUILD_USE_SYSTEM_LIBRARIES'}) {
return 0;
}

Expand Down

0 comments on commit c66b20b

Please sign in to comment.