diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:35:04 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:35:04 +0000 |
commit | 98b9a81ca298299ba33b5bea163f25df758460f0 (patch) | |
tree | 445736deaae20518d86978b6c86dd9a9dec82703 /dmake/unix | |
parent | 23fbb40987d460ca1e980cbc9c71b6b16c5387db (diff) |
INTEGRATION: CWS os2port01 (1.1.1.1.162); FILE MERGED
2007/08/08 08:43:14 obr 1.1.1.1.162.2: RESYNC: (1.1.1.1-1.2); FILE MERGED
2006/12/28 14:54:34 ydario 1.1.1.1.162.1: OS/2 initial import.
Diffstat (limited to 'dmake/unix')
-rw-r--r-- | dmake/unix/dirbrk.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dmake/unix/dirbrk.c b/dmake/unix/dirbrk.c index 6189d61009d0..4bbf58c9eca3 100644 --- a/dmake/unix/dirbrk.c +++ b/dmake/unix/dirbrk.c @@ -1,4 +1,4 @@ -/* RCS $Id: dirbrk.c,v 1.2 2007-01-18 09:44:04 vg Exp $ +/* RCS $Id: dirbrk.c,v 1.3 2007-09-20 14:35:04 vg Exp $ -- -- SYNOPSIS -- Define the directory separator string. @@ -27,8 +27,13 @@ #include "extern.h" +#ifdef __EMX__ +/* os2 uses /, \, and : */ +char* DirBrkStr = "/\\:"; +#else /* Unix only uses / */ char* DirBrkStr = "/"; +#endif /* ** Return TRUE if the name is the full specification of a path name to a file |