diff options
author | grant <grant@pkgsrc.org> | 2004-07-25 06:15:24 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-07-25 06:15:24 +0000 |
commit | 9a993c5df0de7b5c295f19cb390dde628d23185d (patch) | |
tree | d46e53f188335752f99f50804be13ca1cb0a294d /security | |
parent | feb2560cae99ba4c53b56c3019f3417f21e8a3f6 (diff) | |
download | pkgsrc-9a993c5df0de7b5c295f19cb390dde628d23185d.tar.gz |
one of the Makefiles uses ${RM} but doesn't define it, so pass
RM=${RM} in MAKE_ENV.
Diffstat (limited to 'security')
-rw-r--r-- | security/gnutls/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index 0333089a394..79b5dd8eaa1 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/05/22 10:09:53 adam Exp $ +# $NetBSD: Makefile,v 1.17 2004/07/25 06:15:24 grant Exp $ DISTNAME= gnutls-1.0.13 CATEGORIES= security devel @@ -17,6 +17,8 @@ USE_BUILDLINK3= YES USE_LIBTOOL= YES GNU_CONFIGURE= YES +MAKE_ENV+= RM="${RM}" + DOCDIR= ${PREFIX}/share/doc/gnutls EGDIR= ${PREFIX}/share/examples/gnutls |