diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-17 13:51:25 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-11-17 13:51:25 +0000 |
commit | 514008aabd20e8e32fb1657a2ce92557973980b2 (patch) | |
tree | 6d5b52e8ccc408042498ba0b81be9a4078dca50d | |
parent | 1fe29970536f55b1c145a31a2bc9f0bff7a2b2dd (diff) | |
download | simplepkg-514008aabd20e8e32fb1657a2ce92557973980b2.tar.gz simplepkg-514008aabd20e8e32fb1657a2ce92557973980b2.tar.bz2 |
mkbuild: small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@530 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-x | trunk/src/mkbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild index 1eec883..40a0e27 100755 --- a/trunk/src/mkbuild +++ b/trunk/src/mkbuild @@ -814,7 +814,7 @@ if [ ! -z $MKBUILD_NAME ]; then fi [ $VERBOSE -eq $on ] && echo "[[DOWNLOAD FOLDER URL]]=\"$URL_BASE\"" - if [ $SVN_MOD -eq $off && $GIT_MOD -eq $off ]; then + if [ $SVN_MOD -eq $off ] && [ $GIT_MOD -eq $off ]; then # Extension EXTENSION=`validate_parameter "$EXTENSION" "EXTENSION" "$STR_MOUNT"` || handle_error $ERROR_MKBUILD_CONSTRUCTION "EXTENSION" [ $VERBOSE -eq $on ] && echo "[[EXTENSION]]=\"$EXTENSION\"" |