ICU-4420 Fix for MSVC 6 on Windows 98. cygpath is broken on Windows 98.

X-SVN-Rev: 17364
This commit is contained in:
George Rhoten 2005-03-21 18:16:49 +00:00
parent 21a7dba7c3
commit 9d64bf4384
3 changed files with 11 additions and 8 deletions

View File

@ -1,5 +1,5 @@
## Makefile.in for ICU - test/cintltst
## Copyright (c) 1999-2004, International Business Machines Corporation and
## Copyright (c) 1999-2005, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -30,8 +30,9 @@ LINK = $(LINK.c)
endif
BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
BUILDDIR := $(BUILDDIR:test/cintltst/../../=)
BUILDDIR := $(BUILDDIR:test\\\\cintltst/../../=)
BUILDDIR := $(BUILDDIR:test/cintltst/../../=) # For Unix
BUILDDIR := $(BUILDDIR:test\\\\cintltst/../../=) # For Windows
BUILDDIR := $(BUILDDIR:TEST\\\\CINTLTST/../../=) # For Windows 98
# we define ICU_UNICODE_VERSION so we can test it
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/tools/toolutil

View File

@ -1,5 +1,5 @@
## Makefile.in for ICU - test/intltest
## Copyright (c) 1999-2004, International Business Machines Corporation and
## Copyright (c) 1999-2005, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -20,8 +20,9 @@ CLEANFILES = *~ $(DEPS)
TARGET = intltest$(EXEEXT)
BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
BUILDDIR := $(BUILDDIR:test/intltest/../../=)
BUILDDIR := $(BUILDDIR:test\\\\intltest/../../=)
BUILDDIR := $(BUILDDIR:test/intltest/../../=) # For Unix
BUILDDIR := $(BUILDDIR:test\\\\intltest/../../=) # For Windows
BUILDDIR := $(BUILDDIR:TEST\\\\INTLTEST/../../=) # For Windows 98
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"'

View File

@ -20,8 +20,9 @@ CLEANFILES = *~ $(DEPS)
TARGET = iotest$(EXEEXT)
BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
BUILDDIR := $(BUILDDIR:test/iotest/../../=)
BUILDDIR := $(BUILDDIR:test\\\\iotest/../../=)
BUILDDIR := $(BUILDDIR:test/iotest/../../=) # For Unix
BUILDDIR := $(BUILDDIR:test\\\\iotest/../../=) # For Windows
BUILDDIR := $(BUILDDIR:TEST\\\\IOTEST/../../=) # For Windows 98
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n \
-I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/io