Skip to Content.
Sympa Menu

sm-sorcery-bugs - [SM-Sorcery-Bugs] [Bug 13735] sorcery rebuild takes hours to start casting after building zlib trigger queue

sm-sorcery-bugs AT lists.ibiblio.org

Subject: Bugs for Sorcery are reported here

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-sorcery-bugs AT lists.ibiblio.org
  • Subject: [SM-Sorcery-Bugs] [Bug 13735] sorcery rebuild takes hours to start casting after building zlib trigger queue
  • Date: 10 Aug 2007 11:44:25 -0000

http://bugs.sourcemage.org/show_bug.cgi?id=13735





------- Additional Comments From jakakranjc AT email.si 2007-08-10 06:44 -------
the diff between stable and test is small, but a change in
private_add_depends
looks suspicious:
- ! echo $base_deps| grep -q $SPELL; then
+ ! echo $base_deps|grep -x -q "$SPELL"; then

If base_deps contains newlines, they don't get through, since it is not
quoted.
So it is the same as if it doesn't contain them. grep -x can't work with
that,
since it matches the whole line, but really wants to match words.
It is just missing a tr " " "\n" in between like the rest or more
efficiently,
some quotes.

Not sure if this is the culprit, but it does look like it could cause
slowdowns.

--
Configure bugmail: http://bugs.sourcemage.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




Archive powered by MHonArc 2.6.24.

Top of Page