From 2c2da19a5db07b4766325e24c9de66c86943be1d Mon Sep 17 00:00:00 2001 From: law Date: Tue, 26 Oct 1999 06:59:43 +0000 Subject: [PATCH] Also make sure to define DIR_SEPARATOR if it wasn't previously defined. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30186 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/collect2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/collect2.c b/gcc/collect2.c index 9138bcd..fbd5964 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -50,6 +50,7 @@ Boston, MA 02111-1307, USA. */ #include "intl.h" #ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' # define IS_DIR_SEPARATOR(ch) ((ch) == '/') #else /* DIR_SEPARATOR */ # ifndef DIR_SEPARATOR_2 -- 2.7.4