From c060232e7264ac9ab431a3c91fa3276574901d26 Mon Sep 17 00:00:00 2001 From: ohair Date: Wed, 18 Aug 2010 13:46:02 -0700 Subject: [PATCH] 6974005: Use of cygpath in Makefile logic needs to silence error messages Reviewed-by: mchung --- make/common/shared/Defs-windows.gmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/common/shared/Defs-windows.gmk b/make/common/shared/Defs-windows.gmk index 121cd94ea..ac9daf4cd 100644 --- a/make/common/shared/Defs-windows.gmk +++ b/make/common/shared/Defs-windows.gmk @@ -89,7 +89,7 @@ define FullPath $(shell $(CYGPATH_CMD) $1 2> $(DEV_NULL)) endef define OptFullPath -$(shell if [ "$1" != "" -a -d "$1" ]; then $(CYGPATH_CMD) "$1"; else echo "$1"; fi) +$(shell if [ "$1" != "" -a -d "$1" ]; then $(CYGPATH_CMD) "$1" 2> $(DEV_NULL); else echo "$1"; fi) endef else # Temporary until we upgrade to MKS 8.7, MKS pwd returns mixed mode path -- GitLab