ICU-13099 Merging the review feedback update for #12785 Don't call swapFileSepChar on Cygwin (r40038) to maint-59.

X-SVN-Rev: 40046
This commit is contained in:
Yoshito Umaoka 2017-04-13 09:46:02 +00:00
parent 37d10751f0
commit 50f6b4ed9c

View file

@ -283,7 +283,7 @@ writeAssemblyCode(const char *filename, const char *destdir, const char *optEntr
uprv_strcpy(outFilePath, bufferStr);
}
#if defined WINDOWS_WITH_GNUC && U_PLATFORM != U_PF_CYGWIN
#if defined (WINDOWS_WITH_GNUC) && U_PLATFORM != U_PF_CYGWIN
/* Need to fix the file seperator character when using MinGW. */
swapFileSepChar(outFilePath, U_FILE_SEP_CHAR, '/');
#endif