ICU-7883 Add backslash to all occurrences of spaces in the directory path.

X-SVN-Rev: 28762
This commit is contained in:
Michael Ow 2010-10-04 23:55:47 +00:00
parent 858ae2c1a0
commit 2ea7489697

View file

@ -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/ /\\ /')