From: Baruch Siach Date: Mon, 7 Aug 2017 17:54:14 +0000 (+0300) Subject: mutt: fix build with BR2_PACKAGE_SKELETON_NONE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f6756d69154bb8a68232ff11d4b15a2a8f0788b0;p=buildroot.git mutt: fix build with BR2_PACKAGE_SKELETON_NONE BR2_PACKAGE_SKELETON_NONE does not provide the /var subdirectory which breaks symlink creation in that directory. Make sure that /var exists before creating the symlink. Fixes: http://autobuild.buildroot.net/results/32d/32dff0df759baf1120e4f11335e735eb0708b237/ Signed-off-by: Baruch Siach Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/mutt/mutt.mk b/package/mutt/mutt.mk index abd40e5dd6..b0bf5a7b41 100644 --- a/package/mutt/mutt.mk +++ b/package/mutt/mutt.mk @@ -66,6 +66,7 @@ MUTT_CONF_ENV += \ MUTT_CONF_OPTS += --with-mailpath=/var/mail define MUTT_VAR_MAIL + mkdir -p $(TARGET_DIR)/var ln -sf /tmp $(TARGET_DIR)/var/mail endef MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL