summaryrefslogtreecommitdiffstats
path: root/gnustep-apps
diff options
context:
space:
mode:
authorAndraž Levstik2007-04-20 23:24:37 +0200
committerAndraž Levstik2007-04-20 23:24:37 +0200
commit1b364e63aec59ad6862bab214afeb974a1a9fcbf (patch)
treec37e3a7f77cfc2629c84b8692daa8e9049a83e68 /gnustep-apps
parent6e09e8ddaf7693ed84fe83d18e2853aacc6aa8ac (diff)
gnustep-apps/FUNCTIONS: use INSTALL_ROOT
Diffstat (limited to 'gnustep-apps')
-rwxr-xr-xgnustep-apps/FUNCTIONS12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnustep-apps/FUNCTIONS b/gnustep-apps/FUNCTIONS
index e40631cf07..33dd67831b 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
}