Commit 436563c4 authored by Vaibhav Gupta's avatar Vaibhav Gupta

Makefile: Use $(shell pwd) get full paths.

Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
parent e7d9efb7
......@@ -5,7 +5,7 @@
-include Makefile.specific
# include parent_common.mk for buildsystem's defines
# It allows you to inherit an environment configuration from larger project
REPO_PARENT ?= ..
REPO_PARENT ?= $(shell pwd)/..
-include $(REPO_PARENT)/parent_common.mk
all: modules tools
......
......@@ -4,7 +4,7 @@
# include parent_common.mk for buildsystem's defines
# It allows you to inherit an environment configuration from larger project
REPO_PARENT ?= ../../../
REPO_PARENT ?= $(shell pwd)/../../..
-include $(REPO_PARENT)/parent_common.mk
KVERSION ?= $(shell uname -r)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment