From: Yann E. MORIN Date: Sat, 29 Nov 2014 10:55:56 +0000 (+0100) Subject: package/mutt: specify the mailpath X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18ebf0e5e1e495cad670c085e5932c09cd84ae3b;p=buildroot.git package/mutt: specify the mailpath mutt's ./configure looks for different paths for where to look for incoming mails. This is absolutely worng in the case of cross-compilation, because the path it may find on the host may not exist on the target. Not only that, but some host may not even have any of the paths ./configure looks for. Fix that by specifying the mailpath, and set it to the value documented in the FHS [0] Since Buildroot only guarantees /tmp to be writable, make /var/mail a symlink to /tmp . [0] http://refspecs.linuxfoundation.org/FHS_2.3/fhs-2.3.html#VARMAILUSERMAILBOXFILES Reported-by: Vicente Olivert Riera Signed-off-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/mutt/mutt.mk b/package/mutt/mutt.mk index b4f18b0f7a..92457a1871 100644 --- a/package/mutt/mutt.mk +++ b/package/mutt/mutt.mk @@ -57,4 +57,11 @@ MUTT_CONF_ENV += \ mutt_cv_iconv_good=yes \ mutt_cv_iconv_nontrans=no +MUTT_CONF_OPTS += --with-mailpath=/var/mail + +define MUTT_VAR_MAIL + ln -sf /tmp $(TARGET_DIR)/var/mail +endef +MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL + $(eval $(autotools-package))