To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=61856
                  Issue #:|61856
                  Summary:|$(shell ...) waits not only for its own target
                Component:|tools
                  Version:|current
                 Platform:|All
                      URL:|
               OS/Version:|All
                   Status:|NEW
        Status whiteboard:|
                 Keywords:|
               Resolution:|
               Issue type:|DEFECT
                 Priority:|P3
             Subcomponent:|dmake
              Assigned to:|vq
              Reported by:|vq





------- Additional comments from [EMAIL PROTECTED] Thu Feb  9 07:34:03 -0800 
2006 -------
During parallel builds $(shell ...) waits not only for its own target but
apparently for all previous recipe lines to finish.

Example:
- - - - shell.mk - - - -
SHELL*:=/bin/sh 
SHELLFLAGS*:=-ce

all : all1 all2
        @+echo all

all1 :
        @+echo 1
        @+sleep 2
        @+echo "4 (after shellescape)"

all2 :
        @+sleep 1
        @+echo 2
        @+echo "$(shell @+true; echo "2 (shellescape)")"
- - - - shell.mk - - - -

$ dmake -r -P3 -f shell.mk

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