summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-08-19 14:50:06 +0200
committerDaniel Mack <zonque@gmail.com>2014-08-19 14:50:06 +0200
commitb708c9ab760991b4c77734f40b612e263b4ea2d0 (patch)
treefcc7547cbea3585787620a14a58d106c7a436096
parent97bb86cbc0d3755e9e09ace3077de1b922dea4fc (diff)
downloadkdbus-bus-b708c9ab760991b4c77734f40b612e263b4ea2d0.tar.gz
kdbus-bus-b708c9ab760991b4c77734f40b612e263b4ea2d0.tar.bz2
kdbus-bus-b708c9ab760991b4c77734f40b612e263b4ea2d0.zip
Makefile: deal with realtive paths in test/
Invoke realpath to convert a possible relative path into an absolute one.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92c404377bd..7cbba567b04 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ PWD := $(shell pwd)
all: module test
test::
- $(MAKE) -C test KERNELDIR=$(KERNELDIR) KBUILD_MODNAME=kdbus$(EXT)
+ $(MAKE) -C test KERNELDIR=$(realpath $(KERNELDIR)) KBUILD_MODNAME=kdbus$(EXT)
module:
$(MAKE) -C $(KERNELDIR) M=$(PWD)