aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.build
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r--scripts/Makefile.build14
1 files changed, 12 insertions, 2 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 8ef1d61ec228..d32b40048f1f 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -28,10 +28,20 @@ EXTRA_LDFLAGS :=
28 28
29include scripts/Kbuild.include 29include scripts/Kbuild.include
30 30
31# For backward compatibility check that these variables does not change
32save-cflags := $(CFLAGS)
33
31# The filename Kbuild has precedence over Makefile 34# The filename Kbuild has precedence over Makefile
32kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) 35kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
33include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile) 36kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile)
34 37include $(kbuild-file)
38
39# If the save-* variables changed error out
40ifeq ($(KBUILD_NOPEDANTIC),)
41 ifneq ("$(save-cflags)","$(CFLAGS)")
42 $(error CFLAGS was changed in "$(kbuild-file)". Fix it to use EXTRA_CFLAGS)
43 endif
44endif
35include scripts/Makefile.lib 45include scripts/Makefile.lib
36 46
37ifdef host-progs 47ifdef host-progs