From b23857f77b1bc09960298aed2d3b9dd4712877f3 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Sun, 4 Mar 2018 10:13:33 +0100 Subject: [PATCH] Fix build system translation errors. Follow-up to 11a8a39f6d2e057d51559c52c1bf0ba74bbfe189 --- devtools/shared/qrcode/moz.build | 2 +- security/manager/moz.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devtools/shared/qrcode/moz.build b/devtools/shared/qrcode/moz.build index 41516675b9..c9493a5380 100644 --- a/devtools/shared/qrcode/moz.build +++ b/devtools/shared/qrcode/moz.build @@ -9,7 +9,7 @@ DIRS += [ ] # Save file size on Fennec until there are active plans to use the decoder there -if CONFIG['MOZ_FENNEC']: +if not CONFIG['MOZ_FENNEC']: DIRS += [ 'decoder' ] diff --git a/security/manager/moz.build b/security/manager/moz.build index 4ce95f2269..bb2d2e95fc 100644 --- a/security/manager/moz.build +++ b/security/manager/moz.build @@ -6,5 +6,5 @@ DIRS += ['ssl', 'locales'] -if CONFIG['MOZ_XUL'] and CONFIG['MOZ_FENNEC']: +if CONFIG['MOZ_XUL'] and not CONFIG['MOZ_FENNEC']: DIRS += ['pki']