summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-06-12 05:04:45 +0000
committerOliver Bolte <obo@openoffice.org>2007-06-12 05:04:45 +0000
commit736f032896f5fae667208bf3b157a4ddf5971ce0 (patch)
tree7d019cd721e32fb8403a2748be4581e3a59579ec
parent3f47092de3cf4a529209b376dff1cb96935f1eba (diff)
INTEGRATION: CWS dmake48 (1.9.2); FILE MERGED
2007/03/17 19:00:37 vq 1.9.2.1: #i73499# Add new .WINPATH attribute to generate Windows style paths (with regular slashes) instead of the default cygwin style (POSIX) paths for dmake's dynamic macros. This attribute is specific for cygwin dmake executables and non-cygwin environments ignore this attribute. The windows style paths use regular slashes ('/') instead of the usual windows backslash ('\') as directory separator to avoid quoting problems (It still is a cygwin dmake!) and cygwin as well as native windows programs should have no problems using this (c:/foo/bar) path representation. The affected macros are $@, $*, $>, $?, $<, $&, $^ and $(PWD), $(MAKEDIR) and $(TMD). Examples: Content of $(PWD) without .WINPATH (default): /cygdrive/c/temp Content of $(PWD) with .WINPATH set: c:/temp
-rw-r--r--dmake/dmake.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dmake/dmake.c b/dmake/dmake.c
index b38b268bda48..b4fb440259b5 100644
--- a/dmake/dmake.c
+++ b/dmake/dmake.c
@@ -1,6 +1,6 @@
/* $RCSfile: dmake.c,v $
--- $Revision: 1.9 $
--- last change: $Author: vg $ $Date: 2007-01-18 09:29:05 $
+-- $Revision: 1.10 $
+-- last change: $Author: obo $ $Date: 2007-06-12 06:04:45 $
--
-- SYNOPSIS
-- The main program.
@@ -171,6 +171,7 @@ char **argv;
Check = FALSE;
Microsoft = FALSE;
Makemkf = FALSE;
+ UseWinpath= FALSE;
No_exec = FALSE;
m_export = FALSE;
cmdmacs = NIL(char);