From 69b02be5302dc8941e502ab2c747ce23520c1d0b Mon Sep 17 00:00:00 2001 From: Elio Maldonado Date: Sat, 14 Nov 2015 11:32:57 -0800 Subject: [PATCH] Change the test to %if 0%{__isa_bits} == 64 as required in fedora - As done in the patch contributed by Marcin Juszkiewicz - Resolves: Bug 1258425 - Use __isa_bits macro instead of list of 64-bit architectures --- nss.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nss.spec b/nss.spec index 56e9553..b857947 100644 --- a/nss.spec +++ b/nss.spec @@ -292,7 +292,7 @@ export NSS_USE_SYSTEM_SQLITE # TODO: Investigate as there may be a better solution export NSS_DISABLE_GTESTS=1 -%if %{__isa_bits} == 64 +%if 0%{__isa_bits} == 64 USE_64=1 export USE_64 %endif @@ -403,7 +403,7 @@ export FREEBL_NO_DEPEND BUILD_OPT=1 export BUILD_OPT -%if %{__isa_bits} == 64 +%if 0%{__isa_bits} == 64 USE_64=1 export USE_64 %endif