diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-09-28 18:47:30 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-09-28 18:47:30 -0400 |
commit | 9fe00e826d2a5f57d47a598c6833df00a60fe3cb (patch) | |
tree | 23ba6e59942bd80ac906c2be10db5f9dd6afbf98 | |
parent | 097f982b32b1cb0915b760c1a40f67806081f45a (diff) | |
download | UXP-9fe00e826d2a5f57d47a598c6833df00a60fe3cb.tar UXP-9fe00e826d2a5f57d47a598c6833df00a60fe3cb.tar.gz UXP-9fe00e826d2a5f57d47a598c6833df00a60fe3cb.tar.lz UXP-9fe00e826d2a5f57d47a598c6833df00a60fe3cb.tar.xz UXP-9fe00e826d2a5f57d47a598c6833df00a60fe3cb.zip |
Only opt-in to esr52 search service for select applications
-rw-r--r-- | toolkit/components/search/moz.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/components/search/moz.build b/toolkit/components/search/moz.build index 4cc86ff9e..2accffd00 100644 --- a/toolkit/components/search/moz.build +++ b/toolkit/components/search/moz.build @@ -6,10 +6,10 @@ XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini'] -if CONFIG['MC_PALEMOON']: - DIRS += ['orginal'] -else: +if CONFIG['MC_BASILISK'] or CONFIG['HYPE_ICEWEASEL'] or CONFIG['HYPE_ICEDOVE']: DIRS += ['current'] +else: + DIRS += ['orginal'] with Files('**'): BUG_COMPONENT = ('Firefox', 'Search') |