Skip to Content.
Sympa Menu

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

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 (6f2cd7b82cd7daf9c5a2e4f688b62f355c5e668c)
  • Date: Sat, 11 Aug 2007 14:26:04 -0500

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

ChangeLog | 1 +
usr/sbin/cleanse | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 6f2cd7b82cd7daf9c5a2e4f688b62f355c5e668c
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

made the cleanse md5sum check handle (too) many logs, patch from Arwed
von Merkatz #13903

diff --git a/ChangeLog b/ChangeLog
index d9a8568..b8c1d7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
codex_set_current_spell. This way fallbacks can be used there as
well,
which will among other things help a bit with #13883
* cleanse: fix md5sum check locale issue, patch from Thomas Orgis
#13713
+ also made it handle (too) many logs, patch from Arwed von Merkatz
#13903
* gaze: fixed gaze newer breaking on bad input #10149
* libmisc: fix set_architecture not resetting the text color #13842

diff --git a/usr/sbin/cleanse b/usr/sbin/cleanse
index 70bbb83..548e105 100755
--- a/usr/sbin/cleanse
+++ b/usr/sbin/cleanse
@@ -949,7 +949,7 @@ function cleanse_fix_md5sum_check() {
test -h $LINE && continue
REAL_MD5=$(md5sum $LINE)
# find the file in some log somewhere...
- FOUND_IN=$(grep -l "^$REAL_MD5\$" $MD5SUM_LOGS/*)
+ FOUND_IN=$(echo $MD5SUM_LOGS/* | xargs grep -l "^$REAL_MD5\$")

# remove anything from a non-current version of the spell
# this is ugly but the only reasonable way I know of to do this...



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (6f2cd7b82cd7daf9c5a2e4f688b62f355c5e668c), Jaka Kranjc, 08/11/2007

Archive powered by MHonArc 2.6.24.

Top of Page