aboutsummaryrefslogtreecommitdiff
path: root/mail/libdkim
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2019-12-20 23:24:40 +0000
committerBrooks Davis <brooks@FreeBSD.org>2019-12-20 23:24:40 +0000
commit9b1a5c1c0715bf13d0e25f76a12cb6f129039350 (patch)
tree8c9765b75666794f79202f9dbcf7134c9ea89db6 /mail/libdkim
parent1c8e0602f90eecc124ab267fc8a37276e90f69b0 (diff)
downloadports-9b1a5c1c0715bf13d0e25f76a12cb6f129039350.tar.gz
ports-9b1a5c1c0715bf13d0e25f76a12cb6f129039350.zip
Additional builds with with src r354909 applied.
The referenced change made NO_INSTALLLIB, NO_MAN, and NO_PROFILE into errors causing these ports that declare them and use the FreeBSD make infrastructure as part of their build to fail. When the offending variables occur in a BSD Makefile, NO_MAN becomes MAN= and NO_INSTALLLIB and NO_PROFILE become MK_INSTALLLIB=no and MK_PROFILE=no respectively. When declared in the environment they become WITHOUT_<FOO>. Also GC NO_MANCOMPRESSED which doesn't do anything. In the case of devel/libpasori, this change accomplished the same thing as the change in r518434, but more directly (fix the Makefiles rather than patching them after they are installed).
Notes
Notes: svn path=/head/; revision=520531
Diffstat (limited to 'mail/libdkim')
-rw-r--r--mail/libdkim/files/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/libdkim/files/Makefile b/mail/libdkim/files/Makefile
index 5ffe842d9754..2a647fd00360 100644
--- a/mail/libdkim/files/Makefile
+++ b/mail/libdkim/files/Makefile
@@ -11,6 +11,6 @@ INCLUDEDIR= ${PREFIX}/include
CXXFLAGS+= -DOPENSSL_FIPS -I${OPENSSLINC}
LDFLAGS+= -lcrypto -L${OPENSSLLIB}
-NO_PROFILE=
+MK_PROFILE= no
.include <bsd.lib.mk>