diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-19 22:52:25 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-06-19 22:52:25 -0400 |
commit | 9ded0778ee548fd8837bb35bdb5617cae0a791d1 (patch) | |
tree | 0d834712b50bb5188ed53e3f8561c981fa1fc53c /application/basilisk/installer | |
parent | 14b635fa52c1d705778c16e310474eb4ea63403d (diff) | |
download | UXP-9ded0778ee548fd8837bb35bdb5617cae0a791d1.tar UXP-9ded0778ee548fd8837bb35bdb5617cae0a791d1.tar.gz UXP-9ded0778ee548fd8837bb35bdb5617cae0a791d1.tar.lz UXP-9ded0778ee548fd8837bb35bdb5617cae0a791d1.tar.xz UXP-9ded0778ee548fd8837bb35bdb5617cae0a791d1.zip |
[Basilisk] Fix packaging when sync is not built
Packaging will fail due to missing ifdefs when --disable-sync is passed in .mozconfig. This fixes that issue by including the missing ifdefs.
Diffstat (limited to 'application/basilisk/installer')
-rw-r--r-- | application/basilisk/installer/package-manifest.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/application/basilisk/installer/package-manifest.in b/application/basilisk/installer/package-manifest.in index 22655bc33..71f775904 100644 --- a/application/basilisk/installer/package-manifest.in +++ b/application/basilisk/installer/package-manifest.in @@ -477,8 +477,10 @@ @RESPATH@/browser/components/SelfSupportService.manifest @RESPATH@/browser/components/SelfSupportService.js #endif +#ifdef MOZ_SERVICES_SYNC @RESPATH@/components/SyncComponents.manifest @RESPATH@/components/Weave.js +#endif @RESPATH@/components/CaptivePortalDetectComponents.manifest @RESPATH@/components/captivedetect.js @RESPATH@/components/servicesComponents.manifest @@ -629,7 +631,9 @@ @RESPATH@/defaults/pref/channel-prefs.js ; Services (gre) prefs +#ifdef MOZ_SERVICES_SYNC @RESPATH@/defaults/pref/services-sync.js +#endif ; [Layout Engine Resources] ; Style Sheets, Graphics and other Resources used by the layout engine. |