]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
authorMumit Khan <khan@xraylith.wisc.edu>
Sun, 25 Apr 1999 00:23:06 +0000 (00:23 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 25 Apr 1999 00:23:06 +0000 (18:23 -0600)
From-SVN: r26619

libiberty/ChangeLog
libiberty/choose-temp.c

index d17d894883cd5fdd1d5c198a8a8f00097b34e757..645ca3574e10e9c318456d5200e79db5901131ee 100644 (file)
@@ -1,3 +1,7 @@
+Sun Apr 25 01:18:21 1999  Mumit Khan  <khan@xraylith.wisc.edu>
+
+       * choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
+
 1999-04-20  Jim Blandy  <jimb@zwingli.cygnus.com>
 
        Fix from Dale Hawkins:
index 49c738691550b14a1856c8119242b38fcd66bc7a..b1007bb546bdb65982673dfa08124a51632562e9 100644 (file)
@@ -48,7 +48,7 @@ Boston, MA 02111-1307, USA.  */
 extern int mkstemps ();
 
 #ifndef IN_GCC
-#if defined (__MSDOS__) || defined (_WIN32)
+#if defined (__MSDOS__) || (defined (_WIN32) && ! defined (__CYGWIN__) && ! defined (_UWIN))
 #define DIR_SEPARATOR '\\'
 #endif
 #endif