To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53148
------- Additional comments from [EMAIL PROTECTED] Mon Sep 5 11:12:23 -0700
2005 -------
Did I mention that redirecting in the parent is evil? @#$%
<BLOG>
Guess what happens now that the shell escape in done in the correct order:
aaa :
+echo b0 (a)
+echo b1 (b)
+echo b2 (c)
+echo A$(shell echo aaa)A (d)
leads to:
...
echo Ab1 b2 aaaA
Ab1 b2 aaaA
What happens is that (a) is executed, (b) and (c) are pushed behind (a) in the
queue. Then line (d) triggers the redirection of stdout *in the parent* to
capture the output of the $(shell ..) macro. Then we wait for the previous
recipe lines to finish. This is where we capture their stdout and the we start
our shell escape.
I'll move the redirection to the child now.
</BLOG>
---------------------------------------------------------------------
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]