diff options
author | Joonas Niilola <juippis@gentoo.org> | 2019-09-25 15:50:28 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-09-25 15:50:28 +0300 |
commit | 09fff29d7671fbb78002b459b6ed472c6c08a358 (patch) | |
tree | 4254b992bf4db37ea0c1f7678ce246b0f552be2c /mail-mta | |
parent | app-editors/emacs-vcs: Remove a comment. (diff) | |
download | gentoo-09fff29d7671fbb78002b459b6ed472c6c08a358.tar.gz gentoo-09fff29d7671fbb78002b459b6ed472c6c08a358.tar.bz2 gentoo-09fff29d7671fbb78002b459b6ed472c6c08a358.zip |
mail-mta/netqmail: fix a patching mistake I introduced in -r7
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/netqmail/netqmail-1.06-r7.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail-mta/netqmail/netqmail-1.06-r7.ebuild b/mail-mta/netqmail/netqmail-1.06-r7.ebuild index 00b6a3087f4d..10a852843631 100644 --- a/mail-mta/netqmail/netqmail-1.06-r7.ebuild +++ b/mail-mta/netqmail/netqmail-1.06-r7.ebuild @@ -118,13 +118,13 @@ src_prepare() { sed 's~^--- \.\./\.\./~--- ~g' \ < "${DISTDIR}"/${QMAIL_TLS_F} \ > "${T}"/${QMAIL_TLS_F} || die - local PATCHES+=( "${T}/${QMAIL_TLS_F}" + PATCHES+=( "${T}/${QMAIL_TLS_F}" "${DISTDIR}/${QMAIL_TLS_CVE}" "${FILESDIR}/qmail-smtputf8.patch" ) fi if use highvolume; then - local PATCHES+=( "${DISTDIR}/${QMAIL_BIGTODO_F}" ) + PATCHES+=( "${DISTDIR}/${QMAIL_BIGTODO_F}" ) fi if use qmail-spp; then @@ -136,7 +136,7 @@ src_prepare() { # make the patch work with "-p1" sed -e 's#^--- \([Mq]\)#--- a/\1#' -e 's#^+++ \([Mq]\)#+++ b/\1#' -i ${SPP_PATCH} || die - local PATCHES+=( "${SPP_PATCH}" ) + PATCHES+=( "${SPP_PATCH}" ) fi fi |