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
This commit is contained in:
Nicola Pero 2001-11-13 12:38:17 +00:00
parent 78e9fbcdf4
commit d6ea1c0546

View file

@ -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