summaryrefslogtreecommitdiffstats
path: root/network/postfix/postfix.SlackBuild
diff options
context:
space:
mode:
author dsomero2013-11-22 08:34:22 +0100
committer dsomero2013-11-22 08:34:22 +0100
commit687c78d5604ce299d5164ffd69de88f2dd10fefc (patch)
tree2c3b4dd9491198917e0178dd5a0cf0fa3e6715c8 /network/postfix/postfix.SlackBuild
parent610e8461bb9b201adbd4bd9257a9bf48be71f62b (diff)
downloadslackbuilds-687c78d5604ce299d5164ffd69de88f2dd10fefc.tar.gz
various: Fix SlackBuild formatting and comment nit picks.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/postfix/postfix.SlackBuild')
-rw-r--r--network/postfix/postfix.SlackBuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/network/postfix/postfix.SlackBuild b/network/postfix/postfix.SlackBuild
index 7e27650bb6..6329357336 100644
--- a/network/postfix/postfix.SlackBuild
+++ b/network/postfix/postfix.SlackBuild
@@ -57,7 +57,7 @@ fi
# Build with dovecot sasl by default, cyrus/dovecot are supported
SASL=${SASL:-dovecot}
case "$SASL" in
- dovecot) SASLARGS='-DDEF_SERVER_SASL_TYPE=\"dovecot\"'
+ dovecot) SASLARGS='-DDEF_SERVER_SASL_TYPE=\"dovecot\"'
SASLLIBS="" ;;
cyrus) SASLARGS='-DUSE_CYRUS_SASL -I/usr/include/sasl'
SASLLIBS="-L/usr/lib${LIBDIRSUFFIX}/sasl2 -lsasl2" ;;
@@ -195,9 +195,9 @@ cd $PKG/etc/postfix
# Since we gzip the manpages, let's fix the postfix-files to reflect that
# so it won't throw errors during post-install
( cd $PKG/usr/libexec/postfix
-grep manpage postfix-files | while read line;
-do MANPAGE="$(echo "$line" | cut -d: -f1)"
- sed -i s#"$MANPAGE"#"$MANPAGE.gz"# postfix-files ;
+grep manpage postfix-files | while read line;
+do MANPAGE="$(echo "$line" | cut -d: -f1)"
+ sed -i s#"$MANPAGE"#"$MANPAGE.gz"# postfix-files ;
done
)