1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #9578 from miri64/make/fix/BUILDRELPATH

make: make BUILDRELPATH dependent on selected path
This commit is contained in:
Francisco Acosta 2018-07-16 16:34:14 +02:00 committed by GitHub
commit b46f7e0f22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ endif
MAKEOVERRIDES += $(foreach v,$(__DIRECTORY_VARIABLES),$(v)=$($(v)))
# Path to the current directory relative to RIOTPROJECT
BUILDRELPATH ?= $(PWD:$(RIOTPROJECT)/%=%)/
BUILDRELPATH ?= $(CURDIR:$(RIOTPROJECT)/%=%)/
# get host operating system
OS := $(shell uname)