diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-11-11 18:13:40 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-11-11 18:13:40 +0100 |
commit | 9d2d304a60738c4508339f0f876a6a1d36af46c5 (patch) | |
tree | 051f22007324b426446baee4695f6831ae8a8461 /old-configure.in | |
parent | f9e1e4639c10f53da14b5fbb8b64d8b5d06d0572 (diff) | |
download | uxp-9d2d304a60738c4508339f0f876a6a1d36af46c5.tar.gz |
Don't build internal updater by default and set default update channel to an inactive one.
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 ee69eb39a8..6b88a00af9 100644 --- a/old-configure.in +++ b/old-configure.in @@ -3695,10 +3695,10 @@ if test "$MOZ_IOS"; then MOZ_UPDATER= fi -MOZ_ARG_DISABLE_BOOL(updater, -[ --disable-updater Disable building of updater], - MOZ_UPDATER=, - MOZ_UPDATER=1 ) +MOZ_ARG_ENABLE_BOOL(updater, +[ --enable-updater Enable building of internal updater], + MOZ_UPDATER=1, + MOZ_UPDATER= ) if test -n "$MOZ_UPDATER"; then AC_DEFINE(MOZ_UPDATER) |