From 1d70831434c06a3760d93b16699d8e75b6a8ef96 Mon Sep 17 00:00:00 2001 From: Leorize Date: Thu, 17 May 2018 15:06:08 +0700 Subject: palemoon/installer: Fix packaging when built --with-system-nss/nspr The variables set by 'configure' for --with-system-(nss|nspr) is named differently in UXP. This breaks packaging for palemoon when system nss/nspr is used. This commit corrects the name of said variables. --- application/palemoon/installer/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'application') diff --git a/application/palemoon/installer/Makefile.in b/application/palemoon/installer/Makefile.in index 368b16efc..3f009c51c 100644 --- a/application/palemoon/installer/Makefile.in +++ b/application/palemoon/installer/Makefile.in @@ -41,12 +41,12 @@ DEFINES += -DMOZ_GTK3=1 endif endif -ifdef MOZ_NATIVE_NSPR -DEFINES += -DMOZ_NATIVE_NSPR=1 +ifdef MOZ_SYSTEM_NSPR +DEFINES += -DMOZ_SYSTEM_NSPR=1 endif -ifdef MOZ_NATIVE_NSS -DEFINES += -DMOZ_NATIVE_NSS=1 +ifdef MOZ_SYSTEM_NSS +DEFINES += -DMOZ_SYSTEM_NSS=1 endif ifdef NSS_DISABLE_DBM -- cgit v1.2.3