diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-08-04 08:03:36 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-08-04 08:03:36 +0200 |
commit | 2653f1dd0673f41068622f7b663a1ffa2c1db7ba (patch) | |
tree | a1e9e1f7e5090ecd6e6677cb67147e2610facb70 /old-configure.in | |
parent | 18fc5b074314eed73352ae900af265de4d8de377 (diff) | |
download | uxp-2653f1dd0673f41068622f7b663a1ffa2c1db7ba.tar.gz |
Make AC option for devtools (client) an enable_bool to align with the default.
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/old-configure.in b/old-configure.in index a95b307f21..d40305309a 100644 --- a/old-configure.in +++ b/old-configure.in @@ -4568,10 +4568,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 |