From b708c9ab760991b4c77734f40b612e263b4ea2d0 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Tue, 19 Aug 2014 14:50:06 +0200 Subject: [PATCH] Makefile: deal with realtive paths in test/ Invoke realpath to convert a possible relative path into an absolute one. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1