diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-01-18 08:27:04 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-01-18 08:27:04 +0000 |
commit | 9268eb02b5757f30bd36c9e96ff667bea60848c8 (patch) | |
tree | 6af72ffe4bf152c014709003e9c33a8fb3c4ef82 /dmake/NEWS | |
parent | 054a3fc53f4acfdb173e7417d479335d61e09c26 (diff) |
INTEGRATION: CWS dmake47 (1.6.2); FILE MERGED
2006/12/22 04:45:38 vq 1.6.2.6: #i69952# Release dmake 4.7
(Some extra changes were done in CWS dmake47.)
2006/11/23 16:58:00 vq 1.6.2.5: #i69952# Release dmake 4.7.
2006/11/13 19:08:16 vq 1.6.2.4: #i71422# Document new @@ recipe property.
2006/10/08 23:27:11 vq 1.6.2.3: #i70210# Fix dmakes handling of empty dynamic prerequisites.
2006/10/08 22:49:03 vq 1.6.2.2: #i70168# Improve $ handling in targets/prerequisites.
2006/10/07 19:30:41 vq 1.6.2.1: #i69742# Add NEWS file entry and mention normalization in the man page.
Diffstat (limited to 'dmake/NEWS')
-rwxr-xr-x | dmake/NEWS | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dmake/NEWS b/dmake/NEWS index 4c9199065a45..b628c1f3a319 100755 --- a/dmake/NEWS +++ b/dmake/NEWS @@ -2,6 +2,37 @@ News file for the dmake version that is hosted on the OpenOffice.org cvs. #i<number># denote issues tracked by the OpenOffice.org issue tracking system, see <http://qa.openoffice.org/issue_handling/project_issues.html>. +Version 4.7 +=========== + +Volker Quetschke (vq@openoffice.org) +#i71422# Add @@ as a new recipe line property. This new property is a +stronger version of the already existing @ recipe property. The recipe +line and the output (stdout and stderr) of the executed recipe are suppressed +and *NOT* shown on the terminal. +Note: Previously the second @ sign was ignored, that means that using this +new feature doesn't break backwards compatibility but the command output +is naturally not suppressed in older versions. + +Volker Quetschke (vq@openoffice.org) +#i70210# Dmake now works correctly with empty dynamic prerequisites. + +Volker Quetschke (vq@openoffice.org) +#i70168# Improve dmakes handling of literal $ characters in target and +prerequisite filenames. This was not working before and is working now +but the use of literal $ characters in filenames is still strongly +discouraged. See the man page for details. + +Volker Quetschke (vq@openoffice.org) +#i69742# Normalize the pathnames of targets and prerequisites to the shortest +(or most natural, see below for the cygwin case) representation. +Now "./foo", "bar/../foo" and foo are recognized as the same file. + +For cygwin this allows the use of target and prerequisite names with DOS +like pathnames with drive letters (with / and \ as possible path seperators) +and cygwin POSIX pathnames. As the internal format uses cygwin's natural +POSIX representation runtime macros will result in POSIX paths. + Version 4.6 =========== |