diff options
author | wiz <wiz@pkgsrc.org> | 2014-09-01 09:29:54 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-09-01 09:29:54 +0000 |
commit | b43b64db4ccdcb5b162a908654b3964310d77b1f (patch) | |
tree | 9f87eb6ece9d9accdefee582eefec1e193413806 /mail | |
parent | 69f9699d318185fc20c3ec4cf83a9ecc1d6aac57 (diff) | |
download | pkgsrc-b43b64db4ccdcb5b162a908654b3964310d77b1f.tar.gz |
Touch VERSION to avoid triggering rebuilds of it using version.sh,
caused by unidentified bmake dependencies not happening with gmake,
on case insensitive file systems. Reported and fix suggested by
J. Lewis Muir.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt-kz/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/mutt-kz/Makefile b/mail/mutt-kz/Makefile index 1759893fa83..73016278ffb 100644 --- a/mail/mutt-kz/Makefile +++ b/mail/mutt-kz/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2014/03/19 16:17:38 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2014/09/01 09:29:54 wiz Exp $ DISTNAME= mutt-kz-1.5.22.1-rc1 PKGNAME= ${DISTNAME:S/-rc/rc/} @@ -13,6 +13,12 @@ LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer CONFIGURE_ARGS+= --enable-notmuch +# On case-insensitive file systems like on OS X, version.sh is used +# to re-create VERSION, and fails. Make sure VERSION is newer than +# version.sh to avoid this. +pre-build: + ${TOUCH} ${WRKSRC}/VERSION + .include "../../mail/mutt-devel/Makefile.common" DEINSTALL_SRC= ${.CURDIR}/../../mail/mutt-devel/DEINSTALL |