summaryrefslogtreecommitdiff
path: root/dmake/imacs.c
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-10-15 14:39:37 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-10-15 14:39:37 +0000
commite848d1bfc5b896141aedcc575a2d8f37d1c6ae7a (patch)
tree6162d5362cc9589d95a468baccc7b921e267065c /dmake/imacs.c
parentfbc0d5cc3e3eb91a046913eccc69c2143349c524 (diff)
INTEGRATION: CWS dmake411 (1.7.2); FILE MERGED
2007/09/22 23:05:37 vq 1.7.2.2: #i81855# Clean-up merge from CWS os2port01. 2007/09/19 00:34:31 vq 1.7.2.1: #i81252# Add a new SHELLCMDQUOTE control macro.
Diffstat (limited to 'dmake/imacs.c')
-rw-r--r--dmake/imacs.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/dmake/imacs.c b/dmake/imacs.c
index f35ac67b30bd..dc7547932076 100644
--- a/dmake/imacs.c
+++ b/dmake/imacs.c
@@ -1,4 +1,4 @@
-/* RCS $Id: imacs.c,v 1.7 2007-07-03 11:29:46 rt Exp $
+/* RCS $Id: imacs.c,v 1.8 2007-10-15 15:39:37 ihi Exp $
--
-- SYNOPSIS
-- Define default internal macros.
@@ -68,6 +68,9 @@ Create_macro_vars()
else
#if (_MPW)
DirSepStr = ":";
+#elif defined( __EMX__)
+ /* Use '\' for OS/2 port. */
+ DirSepStr = "\\";
#else
DirSepStr = "/";
#endif
@@ -96,6 +99,7 @@ Create_macro_vars()
_set_string_var("SHELL", "", M_DEFAULT, &Shell );
_set_string_var("SHELLFLAGS", " ", M_DEFAULT, &Shell_flags );
+ _set_string_var("SHELLCMDQUOTE","", M_DEFAULT, &Shell_quote );
_set_string_var("GROUPSHELL", "", M_DEFAULT, &GShell );
_set_string_var("GROUPFLAGS", " ", M_DEFAULT, &GShell_flags);
_set_string_var("SHELLMETAS", "", M_DEFAULT, &Shell_metas );