Skip to Content.
Sympa Menu

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

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 (0110100089e53444df1a1a153d33df2588fc530b)
  • Date: Fri, 20 Apr 2007 16:25:16 -0500

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

ChangeLog | 4 ++--
gnustep-apps/FUNCTIONS | 12 ++++++------
gnustep-libs/FUNCTIONS | 12 ++++++------
3 files changed, 14 insertions(+), 14 deletions(-)

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

gnustep-libs/FUNCTIONS: use INSTALL_ROOT

commit 1b364e63aec59ad6862bab214afeb974a1a9fcbf
Author: Andraž Levstik <ruskie AT mages.ath.cx>
Commit: Andraž Levstik <ruskie AT mages.ath.cx>

gnustep-apps/FUNCTIONS: use INSTALL_ROOT

diff --git a/ChangeLog b/ChangeLog
index b0f19e1..4bb13ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
2007-04-20 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
- * gnustep-apps/FUNCTIONS: fixups, forgot some things
- * gnustep-libs/FUNCTIONS: fixups, forgot some things
+ * gnustep-apps/FUNCTIONS: fixups, forgot some things, use INSTALL_ROOT
+ * gnustep-libs/FUNCTIONS: fixups, forgot some things, use INSTALL_ROOT
* ftp/curlftpfs: new spell, fuse mountable ftp fs

2007-04-18 Juuso Alasuutari <iuso AT sourcemage.org>
diff --git a/gnustep-apps/FUNCTIONS b/gnustep-apps/FUNCTIONS
index e40631c..33dd678 100755
--- a/gnustep-apps/FUNCTIONS
+++ b/gnustep-apps/FUNCTIONS
@@ -3,9 +3,9 @@
#---
function default_build()
{
- if [[ -f ${TRACK_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh ]]
+ if [[ -f ${INSTALL_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh ]]
then
- . ${TRACK_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh
+ . ${INSTALL_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh
fi
if [[ -x ./configure ]]
then
@@ -18,17 +18,17 @@ function default_build()
function default_post_install()
{
real_default_post_install &&
- if [[ -x /usr/bin/make_services ]]; then
+ if [[ -x ${INSTALL_ROOT}/usr/bin/make_services ]]; then
message "Running make_services"
- /usr/bin/make_services
+ ${INSTALL_ROOT}/usr/bin/make_services
fi
}

function default_final()
{
- if [[ -x /usr/bin/make_services ]]; then
+ if [[ -x ${INSTALL_ROOT}/usr/bin/make_services ]]; then
message "Running make_services"
- /usr/bin/make_services
+ ${INSTALL_ROOT}/usr/bin/make_services
fi
}

diff --git a/gnustep-libs/FUNCTIONS b/gnustep-libs/FUNCTIONS
index 9852e61..218c5fd 100755
--- a/gnustep-libs/FUNCTIONS
+++ b/gnustep-libs/FUNCTIONS
@@ -3,9 +3,9 @@
#---
function default_build()
{
- if [[ -f ${TRACK_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh ]]
+ if [[ -f ${INSTALL_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh ]]
then
- . ${TRACK_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh
+ . ${INSTALL_ROOT}/usr/share/GNUstep/Makefiles/GNUstep.sh
fi
if [[ -x ./configure ]]
then
@@ -18,18 +18,18 @@ function default_build()
function default_post_install()
{
real_default_post_install &&
- if [[ -x /usr/bin/make_services ]]; then
+ if [[ -x ${INSTALL_ROOT}/usr/bin/make_services ]]; then
message "Running make_services"
- /usr/bin/make_services
+ ${INSTALL_ROOT}/usr/bin/make_services
fi
}

# forgot this
function default_final()
{
- if [[ -x /usr/bin/make_services ]]; then
+ if [[ -x ${INSTALL_ROOT}/usr/bin/make_services ]]; then
message "Running make_services"
- /usr/bin/make_services
+ ${INSTALL_ROOT}/usr/bin/make_services
fi
}




  • [SM-Commit] GIT changes to master grimoire by Andraž Levstik (0110100089e53444df1a1a153d33df2588fc530b), Andraž Levstik, 04/20/2007

Archive powered by MHonArc 2.6.24.

Top of Page