From d6ea1c05468471e4c154f133ebbbbf62708e15cb Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Tue, 13 Nov 2001 12:38:17 +0000 Subject: [PATCH] Yet another fix for PATH check on windows git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11393 72102866-910b-0410-8b05-ffd578937521 --- common.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.make b/common.make index 4aa76ef1..c2b4441a 100644 --- a/common.make +++ b/common.make @@ -95,7 +95,7 @@ ifeq ($(MAKELEVEL),0) # But on windows we might need to first fix it up ... ifeq ($(findstring mingw, $(GNUSTEP_TARGET_OS)), mingw) ifeq ($(shell echo "$(SYS_TOOLS_PATH)" | sed 's/^\([a-zA-Z]:.*\)//'),) - SYS_TOOLS_PATH := $(shell $(GNUSTEP_MAKEFILES)/cygpath -u $(SYS_TOOLS_PATH)) + SYS_TOOLS_PATH := $(shell cygpath -u $(SYS_TOOLS_PATH)) endif endif