From 1d4ff12bb423e1c15ab113adbd0153c24a5b2a83 Mon Sep 17 00:00:00 2001 From: NTD Date: Sat, 17 Feb 2018 14:10:47 -0500 Subject: [PATCH] Basilisk requires devtools client for now so enable it by default but add a temporary exportable variable to bypass that --- browser/confvars.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/browser/confvars.sh b/browser/confvars.sh index d4c2c008dd..65cf154e9e 100644 --- a/browser/confvars.sh +++ b/browser/confvars.sh @@ -62,4 +62,8 @@ MOZ_ADDON_SIGNING=0 MOZ_REQUIRE_SIGNING=0 # Include the DevTools client, not just the server (which is the default) -MOZ_DEVTOOLS=all +if test -n "$BASILISK_DISABLE_DEVTOOLS" ; then +MOZ_DEVTOOLS= +else +MOZ_DEVTOOLS=1 +fi