mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 12:35:58 +00:00
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:
parent
3b305b181f
commit
54d41a3541
@ -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 =
|
||||
|
Loading…
x
Reference in New Issue
Block a user