diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-01-20 14:46:40 -0600 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-01-20 14:46:40 -0600 |
commit | 934bcc2bf510af2c494b527e7df42d0757bdb8a8 (patch) | |
tree | ca3e2f6b8b3cde1480cc089580674a82dc5bbf3f /modules | |
parent | 922a137dcf331dc292cb093abe29bff2de153716 (diff) | |
download | aura-central-934bcc2bf510af2c494b527e7df42d0757bdb8a8.tar.gz |
No Issue - Always build libmar and deps so that update packaging always works regardless of if the updater is built or not
Diffstat (limited to 'modules')
-rw-r--r-- | modules/moz.build | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/moz.build b/modules/moz.build index 2f2d88f7c..fb8d50c34 100644 --- a/modules/moz.build +++ b/modules/moz.build @@ -5,15 +5,14 @@ SPHINX_TREES['toolkit_modules'] = 'docs' -DIRS += ['subprocess'] +DIRS += [ + 'libmar', + 'subprocess', +] if CONFIG['MOZ_MAILNEWS']: DIRS += ['ldap'] -if CONFIG['MOZ_UPDATER']: - # NOTE: The signing related bits of libmar depend on nss - DIRS += ['/modules/libmar'] - for var in ('MOZ_APP_NAME', 'MOZ_APP_VERSION', 'MOZ_APP_VERSION_DISPLAY', |