Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Andraž Levstik (2318146cec4d1821cbfbac9058d55faf2facd4d4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Andraž Levstik <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Andraž Levstik (2318146cec4d1821cbfbac9058d55faf2facd4d4)
  • Date: Sat, 2 Feb 2008 10:15:53 -0600

GIT changes to master grimoire by Andraž Levstik <ruskie AT mages.ath.cx>:

ChangeLog | 3 +++
ruby-raa/FUNCTIONS | 12 +++++++-----
2 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 3f61bc69dd03f6ed9170e7d61fd6fbfaedebddc0
Author: Andraž Levstik <ruskie AT mages.ath.cx>
Commit: Andraž Levstik <ruskie AT mages.ath.cx>

ruby-raa/FUNCTIONS: updated for some rake stuff

diff --git a/ChangeLog b/ChangeLog
index a8c809c..84f168b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-02-02 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * ruby-raa/FUNCTIONS: minor fixups for rake
+
2008-02-01 David Kowis <dkowis AT shlrm.org>
* net/ifupdown: new spell, Much better networking config

diff --git a/ruby-raa/FUNCTIONS b/ruby-raa/FUNCTIONS
index 964fcb5..7d32a1d 100755
--- a/ruby-raa/FUNCTIONS
+++ b/ruby-raa/FUNCTIONS
@@ -25,7 +25,8 @@ function default_build_ruby() {
elif [[ -x ./configure ]]; then
default_build_configure &&
default_build_make
- elif [[ -e ./Rakefile ]]; then
+ elif [[ -e ./Rakefile ]] ||
+ [[ -e ./rakefile ]]; then
rake $OPTS
fi
}
@@ -33,15 +34,16 @@ function default_build_ruby() {
## Default install for ruby spell.
#-------------------------------------------------------------------------
function default_install_ruby() {
- if [[ -e $SOURCE_DIRECTORY/setup.rb ]]; then
+ if [[ -e ./setup.rb ]]; then
ruby setup.rb install
- elif [[ -e $SOURCE_DIRECTORY/install.rb ]]; then
+ elif [[ -e ./install.rb ]]; then
ruby install.rb install
- elif [[ -e $SOURCE_DIRECTORY/extconf.rb ]] ||
+ elif [[ -e ./extconf.rb ]] ||
[[ -e ./Makefile ]]
then
make install
- elif [[ -e $SOURCE_DIRECTORY/Rakefile ]]; then
+ elif [[ -e ./Rakefile ]] ||
+ [[ -e ./rakefile ]]; then
rake install
fi
}



  • [SM-Commit] GIT changes to master grimoire by Andraž Levstik (2318146cec4d1821cbfbac9058d55faf2facd4d4), Andraž Levstik, 02/02/2008

Archive powered by MHonArc 2.6.24.

Top of Page