summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-07-04 23:33:07 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-07-06 09:04:02 -0400
commitbd412d81b7ea4cfa265e3d2309a166181ec7bdab (patch)
tree5021c1d25311cdc191150fffef33082851f2139c /Makefile
parent48f6e3cf5bc6dd0ee00405342ff310c3b1fedb35 (diff)
kbuild: .PHONY is not a variable, but PHONY is
.PHONY is a target, not a variable. Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c5ce55cbc543..5b26847909ec 100644
--- a/Makefile
+++ b/Makefile
@@ -1717,6 +1717,6 @@ endif # skip-makefile
1717PHONY += FORCE 1717PHONY += FORCE
1718FORCE: 1718FORCE:
1719 1719
1720# Declare the contents of the .PHONY variable as phony. We keep that 1720# Declare the contents of the PHONY variable as phony. We keep that
1721# information in a variable so we can use it in if_changed and friends. 1721# information in a variable so we can use it in if_changed and friends.
1722.PHONY: $(PHONY) 1722.PHONY: $(PHONY)