From: Daniel Mack Date: Tue, 19 Aug 2014 12:50:06 +0000 (+0200) Subject: Makefile: deal with realtive paths in test/ X-Git-Tag: upstream/0.20140911.160207utc~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b708c9ab760991b4c77734f40b612e263b4ea2d0;p=platform%2Fcore%2Fsystem%2Fkdbus-bus.git Makefile: deal with realtive paths in test/ Invoke realpath to convert a possible relative path into an absolute one. --- diff --git a/Makefile b/Makefile index 92c4043..7cbba56 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)