diff options
author | Paul Smith <psmith@gnu.org> | 1999-09-02 00:31:21 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-09-02 00:31:21 +0000 |
commit | 10fee1c03c9dcf887314c04612224aeadcba6dd7 (patch) | |
tree | 47fa3887e014eb0021383dca9d7fb75764d43e95 /implicit.c | |
parent | 82f0c5495afcf82b7cf82cbd69fa2f8f63c6b241 (diff) | |
download | gunmake-10fee1c03c9dcf887314c04612224aeadcba6dd7.tar.gz |
* A few W32 fixes for backslash support.
Diffstat (limited to 'implicit.c')
-rw-r--r-- | implicit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ pattern_search (file, archive, depth, recursions) lastslash = rindex (filename, ']'); #else lastslash = rindex (filename, '/'); -#ifdef __MSDOS__ +#if defined(__MSDOS__) || defined(WINDOWS32) /* Handle backslashes (possibly mixed with forward slashes) and the case of "d:file". */ { |