diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-12-05 23:45:39 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-12-05 23:45:39 +0000 |
commit | 26b17bdabd1afef79e0c4f7e1718ed4e63db54c8 (patch) | |
tree | 63b84b87087f08a8835896ffc62e64dd99e91905 /mail/mta | |
parent | a0db75d1f0a43dee01458f43752ee73a955e1a15 (diff) | |
download | slackbuilds-26b17bdabd1afef79e0c4f7e1718ed4e63db54c8.tar.gz slackbuilds-26b17bdabd1afef79e0c4f7e1718ed4e63db54c8.tar.bz2 |
postfix: removed vda support
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@898 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'mail/mta')
-rwxr-xr-x | mail/mta/postfix/postfix.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mta/postfix/postfix.SlackBuild b/mail/mta/postfix/postfix.SlackBuild index f1f565ba..24005576 100755 --- a/mail/mta/postfix/postfix.SlackBuild +++ b/mail/mta/postfix/postfix.SlackBuild @@ -72,9 +72,9 @@ if [ "$RTOOL" == "wget" ]; then if [ ! -f "$SRC_DIR/$SRC" ]; then wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET fi - if [ ! -f "$SRC_DIR/$VDA" ]; then - wget "$VDA_URL" -O "$SRC_DIR/$VDA" # || exit $ERROR_WGET - fi +# if [ ! -f "$SRC_DIR/$VDA" ]; then +# wget "$VDA_URL" -O "$SRC_DIR/$VDA" # || exit $ERROR_WGET +# fi if [ ! -f "$SRC_DIR/$SRC.sig" ]; then wget "$URL.sig" -O "$SRC_DIR/$SRC.sig" || exit $ERROR_WGET fi @@ -142,7 +142,7 @@ rm -rf ${NAME}-${VERSION} ${SOURCEDIR} tar xzvf $SRC_DIR/${NAME}-$VERSION.tar.gz || exit $ERROR_TAR # Patch -if [ -f "$SRC_DIR/$VDA" ]; then +if [ -s "$SRC_DIR/$VDA" ]; then gzip -dc $SRC_DIR/$VDA | patch -p0 fi |