Commit 14b36222 authored by Vaibhav Gupta's avatar Vaibhav Gupta

Correct the default value of 'REPO_PARENT' and make the definition uniform

Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
parent 1675887a
# include parent_common.mk for buildsystem's defines
# use absolute path for REPO_PARENT
REPO_PARENT ?= $(shell /bin/pwd)/..
REPO_PARENT ?= $(shell pwd)/../..
-include $(REPO_PARENT)/parent_common.mk
all: kernel lib tools
......
......@@ -5,7 +5,7 @@
-include Makefile.specific
# include parent_common.mk for buildsystem's defines
#use absolute path for REPO_PARENT
REPO_PARENT ?= $(shell /bin/pwd)/../..
REPO_PARENT ?= $(shell pwd)/../../..
-include $(REPO_PARENT)/parent_common.mk
CPPCHECK ?= cppcheck
......
......@@ -6,7 +6,7 @@
-include Makefile.specific
# include parent_common.mk for buildsystem's defines
REPO_PARENT=../..
REPO_PARENT= $(shell pwd)/../../..
-include $(REPO_PARENT)/parent_common.mk
......
......@@ -7,7 +7,7 @@
# include parent_common.mk for buildsystem's defines
IGNORE_CPU_SUFFIX := y
REPO_PARENT ?=
REPO_PARENT ?= $(pwd)/../../..
-include $(REPO_PARENT)/parent_common.mk
DESTDIR ?= /usr/local
......
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