aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorArt Haas <ahaas@airmail.net>2004-12-29 01:00:28 +0100
committerSam Ravnborg <sam@mars.ravnborg.org>2004-12-29 01:00:28 +0100
commitdf3e98d645023ac8d78f5837ed5fc5c113548778 (patch)
tree75892b1808e673cf24b7281ec6307ff181e21b0c /Makefile
parent5249fb74d46827e5522f7eed5b888227ae34f79b (diff)
downloadhistory-df3e98d645023ac8d78f5837ed5fc5c113548778.tar.gz
kbuild: Trivial Makefile patch
The comment doesn't match the function name. From: "Art Haas" <ahaas@airmail.net> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 961ef035b6da92..c48bfc9e3dfad7 100644
--- a/Makefile
+++ b/Makefile
@@ -290,7 +290,7 @@ check_gcc = $(warning check_gcc is deprecated - use cc-option) \
$(call cc-option, $(1),$(2))
# cc-option-yn
-# Usage: flag := $(call gcc-option-yn, -march=winchip-c6)
+# Usage: flag := $(call cc-option-yn, -march=winchip-c6)
cc-option-yn = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
> /dev/null 2>&1; then echo "y"; else echo "n"; fi;)