build: filter out relative directory entries from $PATH

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48107
v19.07.3_mercusys_ac12_duma
Felix Fietkau 8 years ago
parent 6a90baf2bf
commit dd537242a2

@ -39,6 +39,13 @@ unexport LPATH
# make sure that a predefined CFLAGS variable does not disturb packages
export CFLAGS=
empty:=
space:= $(empty) $(empty)
path:=$(subst :,$(space),$(PATH))
path:=$(filter-out .%,$(path))
path:=$(subst $(space),:,$(path))
export PATH:=$(path)
unexport TAR_OPTIONS
ifneq ($(shell $(HOSTCC) 2>&1 | grep clang),)

Loading…
Cancel
Save