aboutsummaryrefslogtreecommitdiff
path: root/trunk
diff options
context:
space:
mode:
Diffstat (limited to 'trunk')
-rwxr-xr-xtrunk/src/mkbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index 1d4b693..053d5fe 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -369,9 +369,9 @@ function activate_sections {
set_status $SECTION $STATUS $SLACKBUILD_TEMP
done
- if [ $SVN_MOD -eq $on -o $URL == "none" ]; then
+ if [ $SVN_MOD -eq $on -o $URL == "" ]; then
LIST_OFF="download_source md5sum_download_and_check_0 md5sum_download_and_check_1 gpg_signature_check untar_source"
- [ $VERBOSE -eq $on ] && echo -e "\nSubversion or \"none\" URL changes:"
+ [ $VERBOSE -eq $on ] && echo -e "\nSubversion or empty URL changes:"
for i in $LIST_OFF; do
set_status $i "off" $SLACKBUILD_TEMP
done
@@ -762,7 +762,7 @@ if [ ! -z $MKBUILD_NAME ]; then
# URL program
URL=`validate_parameter "$URL" "DOWNLOAD FOLDER URL" ""` || handle_error $ERROR_MKBUILD_CONSTRUCTION "URL"
[ $VERBOSE -eq $on ] && echo "[[URL]]=\"$URL\""
- [ $URL == "none" ] || echo $URL | grep '^svn:\/\/' >/dev/null && SVN_MOD=$on
+ [ $URL == "" ] || echo $URL | grep '^svn:\/\/' >/dev/null && SVN_MOD=$on
STR_MOUNT="`echo $URL | sed 's/.*\.\([a-z0-9]\+\)$/\1/'`"
if [ $STR_MOUNT = "gz" -o $STR_MOUNT = "tgz" -o $STR_MOUNT = "bz2" -o $STR_MOUNT = "zip" ]; then