diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-08-06 07:30:09 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-08-06 07:30:09 -0400 |
commit | cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09 (patch) | |
tree | 66f84fc62b4a827db97edf6e4bd54c87f2b238d3 /toolkit/components/search/moz.build | |
parent | 82eb8109c9f7b40ee76c7dc8788a159511900fe6 (diff) | |
download | UXP-cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09.tar UXP-cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09.tar.gz UXP-cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09.tar.lz UXP-cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09.tar.xz UXP-cae0dfbcbfba73f29e67de6a3e10c5b1f33b2b09.zip |
Add a slightly modified version of the gecko/44 search service and use it when building Pale Moon
Diffstat (limited to 'toolkit/components/search/moz.build')
-rw-r--r-- | toolkit/components/search/moz.build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/toolkit/components/search/moz.build b/toolkit/components/search/moz.build index 739dc6ab8..4cc86ff9e 100644 --- a/toolkit/components/search/moz.build +++ b/toolkit/components/search/moz.build @@ -6,9 +6,10 @@ XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini'] -DIRS += [ - 'current', -] +if CONFIG['MC_PALEMOON']: + DIRS += ['orginal'] +else: + DIRS += ['current'] with Files('**'): BUG_COMPONENT = ('Firefox', 'Search') |