]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
kbuild: allow cc-ifversion to have the argument for false condition
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Thu, 25 Dec 2014 05:31:27 +0000 (14:31 +0900)
committerMichal Marek <mmarek@suse.cz>
Fri, 9 Jan 2015 16:25:44 +0000 (17:25 +0100)
The macro "try-run" can have an argument for each of true and false
cases.  Having an argument for the false case of cc-ifversion (and
ld-ifversion) would be useful too.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Documentation/kbuild/makefiles.txt
scripts/Kbuild.include

index 7b3487a67476eb8e8d7e770d7a27015fa079e8b1..a64f3c6e201214b402e829ec7898b4d1914427be 100644 (file)
@@ -531,8 +531,9 @@ more details, with real examples.
        than or equal to gcc 3.0.
 
     cc-ifversion
-       cc-ifversion tests the version of $(CC) and equals last argument if
-       version expression is true.
+       cc-ifversion tests the version of $(CC) and equals the fourth parameter
+       if version expression is true, or the fifth (if given) if the version
+       expression is false.
 
        Example:
                #fs/reiserfs/Makefile
index ddf0ebdc2ca80c6164ccb42385152e23c88f4821..d3437b82ac256cb7bca2527f0cfe43e07f66a1cb 100644 (file)
@@ -137,7 +137,7 @@ cc-fullversion = $(shell $(CONFIG_SHELL) \
 
 # cc-ifversion
 # Usage:  EXTRA_CFLAGS += $(call cc-ifversion, -lt, 0402, -O1)
-cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3))
+cc-ifversion = $(shell [ $(cc-version) $(1) $(2) ] && echo $(3) || echo $(4))
 
 # cc-ldoption
 # Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
@@ -160,7 +160,7 @@ ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh)
 
 # ld-ifversion
 # Usage:  $(call ld-ifversion, -ge, 22252, y)
-ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3))
+ld-ifversion = $(shell [ $(ld-version) $(1) $(2) ] && echo $(3) || echo $(4))
 
 ######