To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=50053





------- Additional comments from [EMAIL PROTECTED] Tue May 31 19:35:03 -0700 
2005 -------
And another one.

+++ dmake/parse.c       1 Jun 2005 02:10:27 -0000
@@ -107,8 +107,9 @@
                   }
                   else if( *p == ']' )
                      Fatal( "Found unmatched ']'" );
-                  else if( (*pTmpBuf && *p) || (Notabs && !*pTmpBuf && !*p))
+                  else if( *pTmpBuf ) /* Something that was no recipe. */
                     State = NORMAL_SCAN;
+                 /* The only thing that was not handled was an empty line. */
                }
  
                if( State == RULE_SCAN ) break;     /* ie. keep going    */

*pTmpBuf was never "" for the old dmake, therefore the Notabs == true case
never triggered before. This check was completely bogus.

Committed to the cws. The simple makefile now works as expected.

---------------------------------------------------------------------
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]

Reply via email to