[open-ils-commits] [GIT] Evergreen ILS branch master updated. 127baa9fc39d3b0587fe0f6b5c09bd16c3d0f414
Evergreen Git
git at git.evergreen-ils.org
Tue Mar 5 08:39:10 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via 127baa9fc39d3b0587fe0f6b5c09bd16c3d0f414 (commit)
from c0489034bcafdd720e51ee828742a4607462fb06 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 127baa9fc39d3b0587fe0f6b5c09bd16c3d0f414
Author: Galen Charlton <gmc at esilibrary.com>
Date: Thu Feb 28 12:39:40 2013 -0500
LP#1136084: drop silent dependency on 'bsdmainutils' Debian/Ubuntu package
colrm is a perfectly good command, but isn't guaranteed to be
present on a minimal Ubuntu system. This patch replaces ti with
with cut, which is more likely to be present (including on *BSD
servers).
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
diff --git a/Open-ILS/src/extras/autogen.sh b/Open-ILS/src/extras/autogen.sh
index 0311bbe..acecbba 100755
--- a/Open-ILS/src/extras/autogen.sh
+++ b/Open-ILS/src/extras/autogen.sh
@@ -167,7 +167,7 @@ done;
md5sum $file
fi
done
-) | md5sum | cut -f1 -d' ' | colrm 1 26 > LOCALSTATEDIR/web/eg_cache_hash
+) | md5sum | cut -f1 -d' ' | cut -b 27-32 > LOCALSTATEDIR/web/eg_cache_hash
echo
echo -n "Current Evergreen cache key: "
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/extras/autogen.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list