mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
Bug 417045, work around for bustage with make -jN and -save-temps in CFLAGS/CXXFLAGS (10.5 build support), r=ted, a=blocking1.9+
This commit is contained in:
parent
fb8dee4003
commit
e6809fd8bb
@ -65,3 +65,9 @@ FORCE_STATIC_LIB = 1
|
||||
FORCE_USE_PIC = 1
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
# XXX, bug 417045, make -jN combines badly with -save-temps in
|
||||
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
|
||||
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||
.NOTPARALLEL:
|
||||
endif
|
||||
|
@ -78,3 +78,9 @@ ifdef HOST_NSPR_MDCPUCFG
|
||||
HOST_CFLAGS += -DMDCPUCFG=$(HOST_NSPR_MDCPUCFG)
|
||||
endif
|
||||
endif
|
||||
|
||||
# XXX, bug 417045, make -jN combines badly with -save-temps in
|
||||
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
|
||||
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||
.NOTPARALLEL:
|
||||
endif
|
||||
|
@ -90,5 +90,8 @@ endif
|
||||
export::
|
||||
@$(MAKE) libs
|
||||
|
||||
|
||||
|
||||
# XXX, bug 417045, make -jN combines badly with -save-temps in
|
||||
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
|
||||
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||
.NOTPARALLEL:
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user