diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-04-29 10:31:16 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-04-29 10:31:16 +0000 |
commit | 2856b908cff2374253ad794ebe2963c37dc488a7 (patch) | |
tree | 790f078122d644c9aaa98c0410a8dcee55668d1b /security | |
parent | 1ea793d615aed710d7bf92c7136ab4719e3f6b5c (diff) | |
download | pkgsrc-2856b908cff2374253ad794ebe2963c37dc488a7.tar.gz |
Precreate the include/gnutls directory to fix installation. Dunno how this
worked before (maybe the joys of make replace did not expose the problem)...
Fixes PR pkg/25304.
Diffstat (limited to 'security')
-rw-r--r-- | security/gnutls/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index 2feebc0facd..2cb3a8a2773 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/03/01 15:14:45 jmmv Exp $ +# $NetBSD: Makefile,v 1.15 2004/04/29 10:31:16 jmmv Exp $ DISTNAME= gnutls-1.0.8 CATEGORIES= security devel @@ -17,6 +17,9 @@ GNU_CONFIGURE= YES DOCDIR= ${PREFIX}/share/doc/gnutls EGDIR= ${PREFIX}/share/examples/gnutls +pre-install: + ${INSTALL_DATA_DIR} ${PREFIX}/include/gnutls + post-install: ${INSTALL_DATA_DIR} ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/doc/TODO ${DOCDIR} |