diff options
author | tv <tv@pkgsrc.org> | 2004-04-27 19:26:35 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-04-27 19:26:35 +0000 |
commit | bda4bb8ace8000b0db8918506bfbd2fa5c6e3036 (patch) | |
tree | 4ee7d534d0f5cbe69c86e651eb9b43222668330f /security/tcp_wrappers | |
parent | 9a5a14ac9b93d55e178e6681d91557f5891fae01 (diff) | |
download | pkgsrc-bda4bb8ace8000b0db8918506bfbd2fa5c6e3036.tar.gz |
Shared objects must be installed as executable on some systems; convert
INSTALL_DATA to INSTALL_SCRIPT.
Diffstat (limited to 'security/tcp_wrappers')
-rw-r--r-- | security/tcp_wrappers/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/tcp_wrappers/Makefile b/security/tcp_wrappers/Makefile index ec06ce328d1..9e8c3432d42 100644 --- a/security/tcp_wrappers/Makefile +++ b/security/tcp_wrappers/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2004/04/26 01:14:04 tv Exp $ +# $NetBSD: Makefile,v 1.18 2004/04/27 19:26:35 tv Exp $ DISTNAME= tcp_wrappers_7.6-ipv6.1 PKGNAME= tcp_wrappers-7.6.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security net MASTER_SITES= ftp://ftp.porcupine.org/pub/security/ @@ -54,7 +54,7 @@ post-build: done do-install: - cd ${WRKSRC}; ${LIBTOOL} ${INSTALL_DATA} libwrap.la ${PREFIX}/lib + cd ${WRKSRC}; ${LIBTOOL} ${INSTALL_SCRIPT} libwrap.la ${PREFIX}/lib cd ${WRKSRC}; ${LIBTOOL} ${INSTALL_PROGRAM} \ tcpdmatch try-from safe_finger tcpdchk ${PREFIX}/bin cd ${WRKSRC}; ${INSTALL_DATA} tcpd.h ${PREFIX}/include |