Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (268e8f1e95922b0c2a11076212fc1d03d28a4e41)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (268e8f1e95922b0c2a11076212fc1d03d28a4e41)
  • Date: Fri, 8 Aug 2008 07:06:34 -0500

GIT changes to master sorcery by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

ChangeLog | 1 +
var/lib/sorcery/modules/libtablet | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 268e8f1e95922b0c2a11076212fc1d03d28a4e41
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

libtablet: follow symbolic links when searching for the grimoire

diff --git a/ChangeLog b/ChangeLog
index 1f6c989..713c556 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2008-08-08 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* libtablet: fixed a coalescing regression #14618
+ follow symbolic links when searching for the grimoire

2008-07-21 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* libdispel: never fail when trying to remove the spell from the queue
diff --git a/var/lib/sorcery/modules/libtablet
b/var/lib/sorcery/modules/libtablet
index 35b935c..e1bca0d 100755
--- a/var/lib/sorcery/modules/libtablet
+++ b/var/lib/sorcery/modules/libtablet
@@ -466,7 +466,7 @@ function tablet_install_spell_files() {
local section_files=$(find $SECTION_DIRECTORY -maxdepth 1 -type f)
if [[ $section_files ]] ; then cp $section_files section; fi

- local grimoire_files=$(find $GRIMOIRE -maxdepth 1 -type f)
+ local grimoire_files=$(find -L $GRIMOIRE -maxdepth 1 -type f)
if [[ $grimoire_files ]] ; then cp $grimoire_files grimoire; fi

# magic values we want to be able to easily look up



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (268e8f1e95922b0c2a11076212fc1d03d28a4e41), Jaka Kranjc, 08/08/2008

Archive powered by MHonArc 2.6.24.

Top of Page