From 2ea7489697c7ee538b7b5ff3329b79de50880925 Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Mon, 4 Oct 2010 23:55:47 +0000 Subject: [PATCH] ICU-7883 Add backslash to all occurrences of spaces in the directory path. X-SVN-Rev: 28762 --- icu4c/source/icudefs.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/icudefs.mk.in b/icu4c/source/icudefs.mk.in index c2c5747e867..a6923e32fac 100644 --- a/icu4c/source/icudefs.mk.in +++ b/icu4c/source/icudefs.mk.in @@ -221,7 +221,7 @@ TOOLBINDIR=$(BINDIR) TOOLLIBDIR=$(LIBDIR) # Current full path directory. -CURR_FULL_DIR=$(shell pwd | sed 's/ /\\ /') +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/ /\\ /')