summaryrefslogtreecommitdiffstats
path: root/gnustep-libs/FUNCTIONS
diff options
context:
space:
mode:
authorJeremy Blosser2006-04-24 23:41:39 -0500
committerJeremy Blosser2006-04-24 23:41:39 -0500
commit159dedba297a4df3ff97a54f77acad391ae52b81 (patch)
tree6529cb7377c52cb1270eededb8a2960d9514a374 /gnustep-libs/FUNCTIONS
parentbe1ef678e8c1cdb438528d64efa0127f88aa2747 (diff)
sync ./gnustep-libs/FUNCTIONS from test
Diffstat (limited to 'gnustep-libs/FUNCTIONS')
-rwxr-xr-xgnustep-libs/FUNCTIONS11
1 files changed, 5 insertions, 6 deletions
diff --git a/gnustep-libs/FUNCTIONS b/gnustep-libs/FUNCTIONS
index 0f3deef3a3..018209b586 100755
--- a/gnustep-libs/FUNCTIONS
+++ b/gnustep-libs/FUNCTIONS
@@ -7,9 +7,9 @@ function default_build ()
then
. /etc/profile.d/GNUstep.sh
else
- message "${ERROR_COLOR}Unable to find /etc/profile.d/GNUstep.sh"
- message "Rebuild gnustep-make${DEFAULT_COLOR}"
- exit 1
+ message "${ERROR_COLOR}Unable to find /etc/profile.d/GNUstep.sh" &&
+ message "Rebuild gnustep-make${DEFAULT_COLOR}" &&
+ return 1
fi &&
if [ -f ./configure ]
@@ -28,13 +28,12 @@ function default_build ()
fi
}
-
# ------------------------------------------------------------------------------
## Replace sorcerys default_install with a custom one
# ------------------------------------------------------------------------------
function default_install ()
{
- make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
+ make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
if [ "$GNUSTEP_BUILD_DOC" == "y" ]
then
@@ -43,4 +42,4 @@ function default_install ()
make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
cd ../
fi
-} \ No newline at end of file
+}