aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-09-12 15:18:02 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-09-13 00:01:16 +0900
commit0d91bf584fe55349193afa96a2f36d288f65b218 (patch)
tree427412bd8bcbc856df5ba60c7cb25d95a2bf6aae /scripts
parentkbuild: prefix Makefile.dtbinst path with $(srctree) unconditionally (diff)
downloadlinux-dev-0d91bf584fe55349193afa96a2f36d288f65b218.tar.xz
linux-dev-0d91bf584fe55349193afa96a2f36d288f65b218.zip
kbuild: remove old check for CFLAGS use
This check has been here for more than a decade since commit 0c53c8e6eb45 ("kbuild: check for wrong use of CFLAGS"). Enough time for migration has passed. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.build10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 5a2d1c9578a0..cb0377427f94 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -36,21 +36,11 @@ subdir-ccflags-y :=
include scripts/Kbuild.include
-# For backward compatibility check that these variables do not change
-save-cflags := $(CFLAGS)
-
# The filename Kbuild has precedence over Makefile
kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile)
include $(kbuild-file)
-# If the save-* variables changed error out
-ifeq ($(KBUILD_NOPEDANTIC),)
- ifneq ("$(save-cflags)","$(CFLAGS)")
- $(error CFLAGS was changed in "$(kbuild-file)". Fix it to use ccflags-y)
- endif
-endif
-
include scripts/Makefile.lib
# Do not include host rules unless needed