From b1127ad5b33159b82c9393f3d92e74e69ca306a4 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 2 Mar 2021 18:08:15 +0100 Subject: [PATCH] - fix PATH --- make/environment-build.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/make/environment-build.mk b/make/environment-build.mk index 7afe06ef..4c6ac76f 100644 --- a/make/environment-build.mk +++ b/make/environment-build.mk @@ -182,8 +182,7 @@ GNU_HOST_NAME := $(shell support/gnuconfig/config.guess) # search path(s) for all prerequisites VPATH = $(DEPS_DIR) $(HOST_DEPS_DIR) -# Quotes are needed for spaces and all in the original PATH content. -PATH := "$(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(CROSS_DIR)/bin:$(PATH)" +PATH := $(HOST_DIR)/bin:$(HOST_DIR)/sbin:$(CROSS_DIR)/bin:$(PATH) # -----------------------------------------------------------------------------