forked from pool/MozillaFirefox
23 lines
714 B
Diff
23 lines
714 B
Diff
|
From: Wolfgang Rosenauer <stark@suse.de>
|
||
|
Subject: NSS doesn't inherit CFLAGS
|
||
|
References: https://bugzilla.mozilla.org/show_bug.cgi?id=101249
|
||
|
Description:
|
||
|
CFLAGS are not taken from mozilla build
|
||
|
|
||
|
Index: security/manager/Makefile.in
|
||
|
================================================================================
|
||
|
--- security/manager/Makefile.in
|
||
|
+++ security/manager/Makefile.in
|
||
|
@@ -154,7 +154,10 @@
|
||
|
ifneq ($(ABS_topsrcdir),$(MOZ_BUILD_ROOT))
|
||
|
DEFAULT_GMAKE_FLAGS += BUILD_TREE=$(MOZ_BUILD_ROOT)
|
||
|
endif
|
||
|
-ifndef MOZ_DEBUG
|
||
|
+ifdef MOZ_DEBUG
|
||
|
+DEFAULT_GMAKE_FLAGS += OPTIMIZER="$(MOZ_DEBUG_FLAGS)"
|
||
|
+else
|
||
|
+DEFAULT_GMAKE_FLAGS += OPTIMIZER="$(MOZ_OPTIMIZE_FLAGS)"
|
||
|
DEFAULT_GMAKE_FLAGS += BUILD_OPT=1
|
||
|
endif
|
||
|
ifdef GNU_CC
|