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

Andraž Levstik scm at sourcemage.org
Fri Apr 20 17:25:16 EDT 2007


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
 }
 



More information about the SM-Commit mailing list