diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-09 20:03:58 +0900 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-10-02 15:12:41 +0200 |
commit | 5b2389b45d1a9c12b9f4b976e38c36264bfc42f5 (patch) | |
tree | 9d5bdfc4475aca7884edd5d8d205cc1c5ff53230 /Makefile | |
parent | 226422d08c33cf0b68f6ea55a3b0e5f9c8212bf8 (diff) | |
download | linux-stable-5b2389b45d1a9c12b9f4b976e38c36264bfc42f5.tar.gz linux-stable-5b2389b45d1a9c12b9f4b976e38c36264bfc42f5.tar.bz2 linux-stable-5b2389b45d1a9c12b9f4b976e38c36264bfc42f5.zip |
kbuild: simplify build, clean, modbuiltin shorthands
$(if $(KBUILD_SRC),$(srctree)/) was a useful strategy
to omit a long absolute path for in-source-tree build
prior to commit 890676c65d699db3ad82e7dddd0cf8fb449031af
(kbuild: Use relative path when building in the source tree).
Now $(srctree) is "." when building in the source tree.
It would not be annoying to add "$(srctree)/" all the time.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1568,7 +1568,7 @@ endif # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir # Usage: # $(Q)$(MAKE) $(clean)=dir -clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj +clean := -f $(srctree)/scripts/Makefile.clean obj endif # skip-makefile |