diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-30 18:15:38 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-30 18:15:38 +0100 |
commit | 499b2873944530396cc8aecbc7bdd1a2a2c66caa (patch) | |
tree | 1378b26d0c9ccabd0df0b88c9f751960461e2c5d /config/external/nss/crmf | |
parent | 00a5321c958de1f378ac9dacafb6f81ded57441e (diff) | |
download | UXP-499b2873944530396cc8aecbc7bdd1a2a2c66caa.tar UXP-499b2873944530396cc8aecbc7bdd1a2a2c66caa.tar.gz UXP-499b2873944530396cc8aecbc7bdd1a2a2c66caa.tar.lz UXP-499b2873944530396cc8aecbc7bdd1a2a2c66caa.tar.xz UXP-499b2873944530396cc8aecbc7bdd1a2a2c66caa.zip |
Issue #1342 - Remove support for system NSPR/NSS
Diffstat (limited to 'config/external/nss/crmf')
-rw-r--r-- | config/external/nss/crmf/moz.build | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/config/external/nss/crmf/moz.build b/config/external/nss/crmf/moz.build index 04d985d74..8b5434a49 100644 --- a/config/external/nss/crmf/moz.build +++ b/config/external/nss/crmf/moz.build @@ -6,14 +6,11 @@ Library('crmf') -if CONFIG['MOZ_SYSTEM_NSS']: - OS_LIBS += [l for l in CONFIG['NSS_LIBS'] if l.startswith('-L')] -else: - USE_LIBS += [ - # The dependency on nss is not real, but is required to force the - # parent directory being built before this one. This has no - # practical effect on linkage, since the only thing linking crmf - # will need nss anyways. - 'nss', - 'static:/security/nss/lib/crmf/crmf', - ] +USE_LIBS += [ + # The dependency on nss is not real, but is required to force the + # parent directory being built before this one. This has no + # practical effect on linkage, since the only thing linking crmf + # will need nss anyways. + 'nss', + 'static:/security/nss/lib/crmf/crmf', +] |