ICU-3389 Allow building in directories with a space in the directory name.

X-SVN-Rev: 15477
This commit is contained in:
George Rhoten 2004-05-21 22:29:30 +00:00
parent 5aefced260
commit 73656228e0

View file

@ -113,12 +113,12 @@ LIBICU=$(LIBSICU)
endif
# Current full path directory.
CURR_FULL_DIR=$(shell cygpath -ma .)
CURR_FULL_DIR=$(shell cygpath -dma .)
# Convert the specified directory to the native directory format.
# e.g. /cygdrive/c/temp -> C:/temp
native_dir=$(shell cygpath -ma $(1))
native_dir=$(shell cygpath -dma $(1))
# Current full path directory for use in source code in a -D compiler option.
CURR_SRCCODE_FULL_DIR=$(subst \,\\\\,$(shell cygpath -wa .))
CURR_SRCCODE_FULL_DIR=$(subst \,\\\\,$(shell cygpath -da .))
## Compilation rules
%.$(STATIC_O): $(srcdir)/%.c