diff options
author | wiz <wiz@pkgsrc.org> | 2005-08-04 12:30:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-08-04 12:30:59 +0000 |
commit | c59d17a966a45cb327d35f93bbca398d9adeddc7 (patch) | |
tree | d5f61e9086cb3d1279ca9f6d03377f80ebd739bc /mail | |
parent | c3a0e8a2f675554fadd4e34339ca802052069031 (diff) | |
download | pkgsrc-c59d17a966a45cb327d35f93bbca398d9adeddc7.tar.gz |
options.mk needs to be included before Makefile.common, since
Makefile.common checks PKG_OPTIONS; however, options.mk needs
bsd.prefs.mk for an OPSYS test; and bsd.prefs.mk defines FILESDIR
if it isn't defined yet. So we have to override FILESDIR unconditionally
(and similarly for a few other variables) to make libmilter812 pick
up the correct values. Should fix libmilter812 bulk build problem.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/sendmail812/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/sendmail812/Makefile.common b/mail/sendmail812/Makefile.common index 583078a7771..9f2c69a6f32 100644 --- a/mail/sendmail812/Makefile.common +++ b/mail/sendmail812/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2005/08/01 14:54:33 wiz Exp $ +# $NetBSD: Makefile.common,v 1.8 2005/08/04 12:30:59 wiz Exp $ # # Makefile fragment shared with libmilter # @@ -14,9 +14,9 @@ HOMEPAGE= http://www.sendmail.org/ LICENSE= no-profit -DISTINFO_FILE?= ${.CURDIR}/../../mail/sendmail812/distinfo -FILESDIR?= ${.CURDIR}/../../mail/sendmail812/files -PATCHDIR?= ${.CURDIR}/../../mail/sendmail812/patches +DISTINFO_FILE= ${.CURDIR}/../../mail/sendmail812/distinfo +FILESDIR= ${.CURDIR}/../../mail/sendmail812/files +PATCHDIR= ${.CURDIR}/../../mail/sendmail812/patches DIST_VERS= 8.12.11 |