From d2ca8c197ad883782aeddbd95912857ed6e5fbe5 Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 24 Aug 2006 15:36:25 +0000 Subject: [PATCH] (svn r6097) -Fix: mingw and cygwin get / from Makefile, where \ is expected. Make exeption code for it (tnx for debug Frostregen) --- strgen/strgen.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/strgen/strgen.c b/strgen/strgen.c index 015cf2f882..bd8eea1bc9 100644 --- a/strgen/strgen.c +++ b/strgen/strgen.c @@ -1311,7 +1311,12 @@ int CDECL main(int argc, char* argv[]) if (_errors) return 1; /* get the targetfile, strip any directories and append to destination path */ +#if defined(__MINGW32__) || defined (__CYGWIN__) + /* Under mingw32 and cygwin, we enter / via the Makefile, not the expected \ */ + r = strrchr(argv[1], "/"); +#else r = strrchr(argv[1], PATHSEPCHAR); +#endif mkpath(pathbuf, lengthof(pathbuf), dest_dir, (r != NULL) ? &r[1] : argv[1]); /* rename the .txt (input-extension) to .lng */