Sfoglia il codice sorgente

kbuild: always use $(CC) for $(call cc-version)

The possibility to specify an optional parameter did not work out as
expected and it was not used - so remove the possibility.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Sam Ravnborg 19 anni fa
parent
commit
8eb3afe0e9
1 ha cambiato i file con 1 aggiunte e 2 eliminazioni
  1. 1 2
      scripts/Kbuild.include

+ 1 - 2
scripts/Kbuild.include

@@ -77,8 +77,7 @@ cc-option-align = $(subst -functions=0,,\
 
 
 # cc-version
 # cc-version
 # Usage gcc-ver := $(call cc-version, $(CC))
 # Usage gcc-ver := $(call cc-version, $(CC))
-cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh \
-              $(if $(1), $(1), $(CC)))
+cc-version = $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-version.sh $(CC))
 
 
 # cc-ifversion
 # cc-ifversion
 # Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
 # Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)