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:
wchang0222%aol.com 2004-11-09 06:24:18 +00:00
parent 3b305b181f
commit 54d41a3541

View File

@ -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 =