From 7e72d845a272b25128135d8077b3202bb1bd6a46 Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Mon, 14 May 2012 16:31:28 +0000 Subject: [PATCH] ICU-9313 Fix build error on Cygwin/MSVC X-SVN-Rev: 31821 --- icu4c/source/icudefs.mk.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/icudefs.mk.in b/icu4c/source/icudefs.mk.in index 699031ecfd1..54d074996b8 100644 --- a/icu4c/source/icudefs.mk.in +++ b/icu4c/source/icudefs.mk.in @@ -266,9 +266,9 @@ INSTALLED_INVOKE = $(LDLIBRARYPATH_ENVVAR)=$(libdir):$$$(LDLIBRARYPATH_ENVVAR) include @platform_make_fragment@ # Current full path directory. -CURR_FULL_DIR=$(shell pwd | sed 's/ /\\ /g') +CURR_FULL_DIR?=$(shell pwd | sed 's/ /\\ /g') # Current full path directory for use in source code in a -D compiler option. -CURR_SRCCODE_FULL_DIR=$(shell pwd | sed 's/ /\\ /') +CURR_SRCCODE_FULL_DIR?=$(shell pwd | sed 's/ /\\ /') # When shared libraries are disabled and static libraries are enabled, # the C++ compiler must be used to link in the libraries for the tools. -- 2.40.0