diff options
author | Nick Clifton <nickc@cygnus.com> | 1998-03-21 23:52:13 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-21 16:52:13 -0700 |
commit | 4a0cf2aa3b7546082396bc96ca488b7bd93b22b1 (patch) | |
tree | 5966a710156c069c2bbf5eda166774de2e67b635 | |
parent | a73cab0f26f6a1c6ebf8b27f106223690e75ef3c (diff) | |
download | gcc-4a0cf2aa3b7546082396bc96ca488b7bd93b22b1.zip gcc-4a0cf2aa3b7546082396bc96ca488b7bd93b22b1.tar.gz gcc-4a0cf2aa3b7546082396bc96ca488b7bd93b22b1.tar.bz2 |
xm-cygwin32.h (PATH_SEPARATOR): Set to a semi-colon.
* config/i386/xm-cygwin32.h (PATH_SEPARATOR): Set to a semi-colon.
Co-Authored-By: Geoff Noer <noer@cygnus.com>
From-SVN: r18747
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/i386/xm-cygwin32.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index abfd9b8..3cd41d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -6,6 +6,8 @@ Sun Mar 22 00:50:42 1998 Nick Clifton <nickc@cygnus.com> * objc/Makefile.in: Various fixes for building cygwin32 native toolchains. * objc/Make-lang.in: Likewise. + * config/i386/xm-cygwin32.h (PATH_SEPARATOR): Set to a semi-colon. + Sun Mar 22 00:21:46 1998 R. Ganesan <rganesan@novell.com> * configure.in: Handle with-PACKAGE=no correctly diff --git a/gcc/config/i386/xm-cygwin32.h b/gcc/config/i386/xm-cygwin32.h index c8d2627..8f8db60 100644 --- a/gcc/config/i386/xm-cygwin32.h +++ b/gcc/config/i386/xm-cygwin32.h @@ -31,5 +31,7 @@ Boston, MA 02111-1307, USA. */ /* Even though we support "/", allow "\" since everybody tests both. */ #define DIR_SEPARATOR '\\' +#define PATH_SEPARATOR ';' + /* This is needed so that protoize will compile. */ #define POSIX |