Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (e538fdc18ac933b3e0e6ce336f304da919801282)

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 grimoire by Jaka Kranjc (e538fdc18ac933b3e0e6ce336f304da919801282)
  • Date: Fri, 22 Aug 2008 11:45:06 -0500

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

ChangeLog | 3 +++
FUNCTIONS | 5 ++++-
2 files changed, 7 insertions(+), 1 deletion(-)

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

FUNCTIONS: made default_grimoire_post_install a noop if staging is off

diff --git a/ChangeLog b/ChangeLog
index ed8442e..1cdc075 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-08-22 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * FUNCTIONS: made default_grimoire_post_install a noop if staging is
off
+
2008-08-22 Robert Figura <template AT sourcemage.org>
* graphics/brlcad: new spell, fixing #7949

diff --git a/FUNCTIONS b/FUNCTIONS
index 7e3ae66..8ed8e1e 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -7,7 +7,10 @@
#---------------------------------------------------------------------
function default_grimoire_post_install () {
real_default_sorcery_post_install && # currently a no-op
- pushd TRANSL &> /dev/null
+ if [[ $STAGED_INSTALL == off ]]; then
+ return 0
+ fi &&
+ pushd TRANSL &> /dev/null &&
if [[ -d usr/man ]]; then
echo Fixing bad install path: /usr/man &&
mv -v usr/man usr/share



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (e538fdc18ac933b3e0e6ce336f304da919801282), Jaka Kranjc, 08/22/2008

Archive powered by MHonArc 2.6.24.

Top of Page