Make AC option for devtools (client) an enable_bool to align with the default.

This commit is contained in:
wolfbeast 2018-08-04 08:03:36 +02:00 committed by Roy Tam
commit 146a00f5b0

View file

@ -4651,10 +4651,10 @@ AC_SUBST(MOZ_DEVTOOLS_SERVER)
dnl ========================================================
dnl = Disable Mozilla Developer Tools (client)
dnl ========================================================
MOZ_ARG_DISABLE_BOOL(devtools,
[ --disable-devtools Disable Mozilla Developer Tools (client)],
MOZ_DEVTOOLS=,
MOZ_DEVTOOLS=1)
MOZ_ARG_ENABLE_BOOL(devtools,
[ --enable-devtools Enable Mozilla Developer Tools (client)],
MOZ_DEVTOOLS=1,
MOZ_DEVTOOLS=)
if test -n "$MOZ_DEVTOOLS"; then
if test ! -n "$MOZ_DEVTOOLS_SERVER"; then