diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2023-08-21 17:50:44 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2023-08-21 17:50:44 +0000 |
commit | 7c569a672bdaabfb620a62543b4dc06cae7e5acd (patch) | |
tree | 2907b60d53ac62325b2616baa4ad85bb9622ea1b | |
parent | 9318c43722de21851f11d4b66c6dd9f3b3ce07e9 (diff) |
mail/msmtp: don't run autoreconf
The 'autoreconf' was added due to the PATCHFILE added in 04ea6b3ea148.
This patch was later removed, but the 'autoreconf' was left, causing
some issues, for example, requiring gettext during the build stage,
even when NLS is disabled.
Reported by: Ole Lemke
-rw-r--r-- | mail/msmtp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 0de0f35d888d..ed0c6aa188da 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -12,7 +12,7 @@ WWW= https://marlam.de/msmtp/ LICENSE= GPLv3 GNU_CONFIGURE= yes -USES= autoreconf cpe gmake makeinfo pkgconfig tar:xz +USES= cpe gmake makeinfo pkgconfig tar:xz CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INFO= msmtp |