To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=77202
------- Additional comments from [EMAIL PROTECTED] Wed May 16 22:27:54 +0000 2007 ------- This should fix the ./ttt == ttt problem: --- dmake/path.c 30 Jan 2007 02:39:45 -0000 1.2.2.2 +++ dmake/path.c 16 May 2007 19:19:32 -0000 @@ -204,8 +208,8 @@ continue; } - /* Remove './' */ - if ( p-q == 1 && *q == '.' ) { + /* Remove './' except at start of path. */ + if ( p-q == 1 && *q == '.' && q != path ) { strcpy(q,p+1); q = tpath; continue; We could have a quick dmake 4.9 to get this in. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]