]> granicus.if.org Git - icu/commitdiff
ICU-7883 Fix backslash issue on MinGW
authorMichael Ow <mow@svn.icu-project.org>
Thu, 5 Apr 2012 17:14:32 +0000 (17:14 +0000)
committerMichael Ow <mow@svn.icu-project.org>
Thu, 5 Apr 2012 17:14:32 +0000 (17:14 +0000)
X-SVN-Rev: 31679

icu4c/source/icudefs.mk.in

index 44ff6bac9e55c3e954773c55110d3434bea1f172..699031ecfd193a566259173be09f211156fb3964 100644 (file)
@@ -221,11 +221,6 @@ BINDIR=$(top_builddir)/bin
 TOOLBINDIR=$(BINDIR)
 TOOLLIBDIR=$(LIBDIR)
 
-# Current full path directory.
-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/ /\\ /')
-
 # Name flexibility for the library naming scheme.  Any modifications should
 # be made in the mh- file for the specific platform.
 DATA_STUBNAME = data
@@ -270,6 +265,11 @@ INSTALLED_INVOKE = $(LDLIBRARYPATH_ENVVAR)=$(libdir):$$$(LDLIBRARYPATH_ENVVAR)
 # Platform-specific setup
 include @platform_make_fragment@
 
+# Current full path directory.
+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/ /\\ /')
+
 # When shared libraries are disabled and static libraries are enabled,
 # the C++ compiler must be used to link in the libraries for the tools.
 ifneq ($(ENABLE_SHARED),YES)