diff options
author | Michal Marek <mmarek@suse.cz> | 2014-04-25 17:29:45 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-05-14 22:43:04 +0200 |
commit | 7e1c04779efd51154baf652e653ceb24ce68939b (patch) | |
tree | a340add3769a22fa76066ef1b0fe3b12e9b28b97 /Makefile | |
parent | fb916b42f3963dd32ed3c514afcc575d9e19db93 (diff) | |
download | linux-7e1c04779efd51154baf652e653ceb24ce68939b.tar.gz linux-7e1c04779efd51154baf652e653ceb24ce68939b.tar.bz2 linux-7e1c04779efd51154baf652e653ceb24ce68939b.zip |
kbuild: Use relative path for $(objtree)
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 <sam@ravnborg.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)/ |