Commit 97bc6910 authored by Vaibhav Gupta's avatar Vaibhav Gupta Committed by Federico Vaga

Use `$(shell pwd)` when defining a variable with a PATH

There is no general convention among drivers to define a variable with
some path as a value. Some use `$(shell pwd) and some not. Thus, make
everything uniform.
Signed-off-by: 's avatarVaibhav Gupta <vaibhav.gupta@cern.ch>
parent 6acbba87
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# Copyright (C) 2019 CERN # Copyright (C) 2019 CERN
TOPDIR ?= ../../../ TOPDIR ?= $(shell pwd)/../../..
GCORES ?= $(abspath $(TOPDIR)) GCORES ?= $(abspath $(TOPDIR))
# #
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# Copyright (C) 2019 CERN # Copyright (C) 2019 CERN
TOPDIR ?= ../../../../../ TOPDIR ?= $(shell pwd)/../../../../../
GCORES ?= $(abspath $(TOPDIR)) GCORES ?= $(abspath $(TOPDIR))
# #
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# #
# Copyright (C) 2019 CERN # Copyright (C) 2019 CERN
TOPDIR ?= ../../../../ TOPDIR ?= $(shell pwd)/../../../../
GCORES ?= $(abspath $(TOPDIR)) GCORES ?= $(abspath $(TOPDIR))
# #
......
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