Skip to Content.
Sympa Menu

sm-grimoire-bugs - [SM-Grimoire-Bugs] [Bug 12966] sourcing KDE_DEPENDS with '&&' breaks 'gaze dependencies' chain

sm-grimoire-bugs AT lists.ibiblio.org

Subject: SourceMage Grimoire Bug List

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-grimoire-bugs AT lists.ibiblio.org
  • Subject: [SM-Grimoire-Bugs] [Bug 12966] sourcing KDE_DEPENDS with '&&' breaks 'gaze dependencies' chain
  • Date: 28 Aug 2006 19:16:02 -0000

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


jakakranjc AT email.si changed:

What |Removed |Added
----------------------------------------------------------------------------
Component|kde |Gaze
Product|Codex |Sorcery
Version|test grimoire |1.13.x




------- Additional Comments From jakakranjc AT email.si 2006-08-28 14:16 -------
it is a bug in gaze, Andrew will probably commit the fix soon.

Here is the diff he provided if you want to try it:
--- usr/sbin/gaze 2006-08-10 20:01:23.000000000 +0200
+++ /usr/sbin/gaze 2006-08-28 21:18:01.000000000 +0200
@@ -1571,12 +1571,13 @@
echo "$name" >> $FOUND
fi

- local SPELL=$(codex_find_spell_by_name $name)
- [[ -e "$SPELL/DEPENDS" ]] &&
+ local SPELL_DIRECTORY=$(codex_find_spell_by_name $name)
+ [[ -e "$SPELL_DIRECTORY/DEPENDS" ]] &&
(
let DEPTH++
define_functions ':;' grep
- source "$SPELL/DEPENDS" 2>/dev/null
+ codex_get_spell_paths $SPELL_DIRECTORY
+ source "$SPELL_DIRECTORY/DEPENDS" 2>/dev/null
)
}
recurse $SPELL


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