]> Git Repo - linux.git/commitdiff
kbuild: Use relative path for $(objtree)
authorMichal Marek <[email protected]>
Fri, 25 Apr 2014 15:29:45 +0000 (17:29 +0200)
committerMichal Marek <[email protected]>
Wed, 14 May 2014 20:43:04 +0000 (22:43 +0200)
The main Makefile sets its working directory to the object tree and
never changes it again. Therefore, we can use '.' instead of the
absolute path. The only case where we need the absolute path is when
creating the 'build' symlink in /lib/modules.

Acked-by: Sam Ravnborg <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
Makefile

index d25c7de06d593c3b1212545b3771b7e3ba16f9da..dec0845c07afae3a1fa21aa60332466fa20e6dd0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -150,7 +150,7 @@ _all: modules
 endif
 
 srctree                := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
-objtree                := $(CURDIR)
+objtree                := .
 src            := $(srctree)
 obj            := $(objtree)
 
@@ -1062,7 +1062,7 @@ _modinst_:
        @ln -s $(srctree) $(MODLIB)/source
        @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
                rm -f $(MODLIB)/build ; \
-               ln -s $(objtree) $(MODLIB)/build ; \
+               ln -s $(CURDIR) $(MODLIB)/build ; \
        fi
        @cp -f $(objtree)/modules.order $(MODLIB)/
        @cp -f $(objtree)/modules.builtin $(MODLIB)/
This page took 0.054379 seconds and 4 git commands to generate.