зеркало из https://github.com/mozilla/pjs.git
Bugzilla bug 93206: allow $(CC) to contain multiple words. coreconf itself
doesn't set CC to be multiple words, but higher-level modules such as PSM may pass CC to NSS on the gmake command line and $(CC) may contain multiple words. r=cls,jpierre.
This commit is contained in:
Родитель
1b073ff2f7
Коммит
60e13508c3
|
@ -85,14 +85,14 @@
|
|||
#
|
||||
|
||||
ifndef COMPILER_TAG
|
||||
ifneq ($(DEFAULT_COMPILER), $(notdir $(CC)))
|
||||
ifneq ($(DEFAULT_COMPILER), $(notdir $(firstword $(CC))))
|
||||
#
|
||||
# Temporary define for the Client; to be removed when binary release is used
|
||||
#
|
||||
ifdef MOZILLA_CLIENT
|
||||
COMPILER_TAG =
|
||||
else
|
||||
COMPILER_TAG = _$(notdir $(CC))
|
||||
COMPILER_TAG = _$(notdir $(firstword $(CC)))
|
||||
endif
|
||||
else
|
||||
COMPILER_TAG =
|
||||
|
|
Загрузка…
Ссылка в новой задаче