aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.build4
-rw-r--r--scripts/Makefile.clean4
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 8f4f5a347767..506e3f3befe3 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -11,8 +11,8 @@ __build:
11-include .config 11-include .config
12 12
13# The filename Kbuild has precedence over Makefile 13# The filename Kbuild has precedence over Makefile
14include $(if $(wildcard $(srctree)/$(src)/Kbuild), \ 14kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
15 $(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile) 15include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
16 16
17include scripts/Kbuild.include 17include scripts/Kbuild.include
18include scripts/Makefile.lib 18include scripts/Makefile.lib
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index 62351b630fab..8974ea5fc878 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -13,8 +13,8 @@ __clean:
13clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj 13clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
14 14
15# The filename Kbuild has precedence over Makefile 15# The filename Kbuild has precedence over Makefile
16include $(if $(wildcard $(srctree)/$(src)/Kbuild), \ 16kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
17 $(srctree)/$(src)/Kbuild, $(srctree)/$(src)/Makefile) 17include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile)
18 18
19# Figure out what we need to build from the various variables 19# Figure out what we need to build from the various variables
20# ========================================================================== 20# ==========================================================================