summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Marek <mmarek@suse.cz>2014-04-25 17:36:14 +0200
committerMichal Marek <mmarek@suse.cz>2014-05-14 22:43:05 +0200
commit890676c65d699db3ad82e7dddd0cf8fb449031af (patch)
treed0bf7a95aefcda8bd7b7390435534e67dad97fcd /Makefile
parent7e1c04779efd51154baf652e653ceb24ce68939b (diff)
downloadlinux-0-day-890676c65d699db3ad82e7dddd0cf8fb449031af.tar.gz
linux-0-day-890676c65d699db3ad82e7dddd0cf8fb449031af.tar.xz
kbuild: Use relative path when building in the source tree
When not using O=, $(srctree) refers to the same directory as $(objtree), so we can set it to '.' as well. This makes the default include path more compact and results in more readable messages from the compiler. The only case where we need the absolute path is when creating the 'source' symlink in /lib/modules. Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dec0845c07afa..3e134ec4c3d33 100644
--- a/Makefile
+++ b/Makefile
@@ -149,7 +149,7 @@ else
_all: modules
endif
-srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
+srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),.)
objtree := .
src := $(srctree)
obj := $(objtree)
@@ -1059,7 +1059,7 @@ _modinst_:
@rm -rf $(MODLIB)/kernel
@rm -f $(MODLIB)/source
@mkdir -p $(MODLIB)/kernel
- @ln -s $(srctree) $(MODLIB)/source
+ @ln -s `cd $(srctree) && /bin/pwd` $(MODLIB)/source
@if [ ! $(objtree) -ef $(MODLIB)/build ]; then \
rm -f $(MODLIB)/build ; \
ln -s $(CURDIR) $(MODLIB)/build ; \