Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] BZR Change 3 to test sorcery by Andrew Stitt <astitt@sourcemage.org>

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: bzr AT fawkes.sourcemage.org
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] BZR Change 3 to test sorcery by Andrew Stitt <astitt AT sourcemage.org>
  • Date: Mon, 10 Apr 2006 10:45:03 -0500

------------------------------------------------------------
revno: 3
committer: Andrew Stitt <astitt AT sourcemage.org>
branch nick: test
timestamp: Tue 2006-04-04 20:20:49 -0700
message:
fix bug 10357
=== modified file 'ChangeLog'
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,7 @@
+2006-04-04 Andrew Stitt <astitt AT sourcemage.org>
+ * libmisc: fix bug 10357, add extra check for a file incase theres
+ a directory named make.
+
2006-03-25 Andrew Stitt <astitt AT sourcemage.org>
* libunpack: check for spell or actual command before assuming
verification cannot be done.

=== modified file 'var/lib/sorcery/modules/libmisc'
--- var/lib/sorcery/modules/libmisc
+++ var/lib/sorcery/modules/libmisc
@@ -1128,7 +1128,7 @@
local target=$1 location
local BREAK
function smgl_which_sub() {
- if test -x "$1/$target" ; then
+ if test -f "$1/$target" -a -x "$1/$target" ; then
echo "$1/$target"
BREAK=yes
fi




  • [SM-Commit] BZR Change 3 to test sorcery by Andrew Stitt <astitt AT sourcemage.org>, bzr, 04/10/2006

Archive powered by MHonArc 2.6.24.

Top of Page