Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (5d78342d85ef3a9067f1587a1ddef7eb85ec48aa)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (5d78342d85ef3a9067f1587a1ddef7eb85ec48aa)
  • Date: Sat, 29 Oct 2016 06:02:59 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

ChangeLog | 3 +++
ruby-raa/FUNCTIONS | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 5d78342d85ef3a9067f1587a1ddef7eb85ec48aa
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

ruby-raa/FUNCTIONS: fixed for bash 4.4 substitution

diff --git a/ChangeLog b/ChangeLog
index 7f063ec..f816896 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2016-10-29 Pavel Vinogradov <public AT sourcemage.org>
+ * ruby-raa/FUNCTIONS: fixed for bash 4.4 substitution
+
2016-10-25 Pavel Vinogradov <public AT sourcemage.org>
* http/nghttp2: new spell, a HTTP/2 C Library

diff --git a/ruby-raa/FUNCTIONS b/ruby-raa/FUNCTIONS
index 7d32a1d..e039ad1 100755
--- a/ruby-raa/FUNCTIONS
+++ b/ruby-raa/FUNCTIONS
@@ -3,7 +3,7 @@
#-------------------------------------------------------------------------
function default_build_ruby() {
local up_spell_name=$(echo $SPELL | tr "a-z" "A-Z") &&
- local up_spell_name=$(echo $SPELL | tr "-" "_") &&
+ up_spell_name=$(echo $up_spell_name | tr ".-" "_") &&
local tempopts="${up_spell_name}_OPTS" &&
OPTS="${!tempopts} $OPTS" &&
if [[ -e ./setup.rb ]]; then



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (5d78342d85ef3a9067f1587a1ddef7eb85ec48aa), Pavel Vinogradov, 10/29/2016

Archive powered by MHonArc 2.6.24.

Top of Page