diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-04-19 18:28:58 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-04-19 21:34:05 -0300 |
commit | 9fb776ec1d41d02f4fac424b7d579419468f29f0 (patch) | |
tree | 341a021f2ce514498010045c6adbf7e5131b5daa /mail | |
parent | e1abf0c3c7c08d16765c3e491efeccbb5948cdce (diff) |
mutt: don't use host mailpath definition
Use configure --with-mailpath=/var/mail instead of letting it guess the
value base on the host path. If configure can't find it, the package
will fail to build. The path was taken from the current bot build.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 14214d9d9..38da53cb8 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mutt PKG_VERSION:=1.14.7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://bitbucket.org/mutt/mutt/downloads/ \ http://ftp.mutt.org/pub/mutt/ @@ -45,6 +45,7 @@ CONFIGURE_ARGS += \ --oldincludedir=$(PKG_BUILD_DIR)/. \ --enable-pop \ --enable-imap \ + --with-mailpath=/var/mail \ --with-ssl \ --without-idn \ --disable-doc |