diff options
author | grant <grant@pkgsrc.org> | 2004-02-10 09:06:55 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-10 09:06:55 +0000 |
commit | d25b85d3510ffc17cffe4002a81be1cd76100ec1 (patch) | |
tree | 32b0db31b25841c6fa9089a7b41155355a9ad441 /security/tcp_wrappers | |
parent | d07dcb17f9c16716a7b9d2ec3523e56ad3fe2c25 (diff) | |
download | pkgsrc-d25b85d3510ffc17cffe4002a81be1cd76100ec1.tar.gz |
fix build on IRIX by using the right Makefile target, which contains
only the major part of OS_VERSION.
fixes part of PR pkg/24375 from Georg Schwarz.
Diffstat (limited to 'security/tcp_wrappers')
-rw-r--r-- | security/tcp_wrappers/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/tcp_wrappers/Makefile b/security/tcp_wrappers/Makefile index 1c96293f1b3..504a2a82dbf 100644 --- a/security/tcp_wrappers/Makefile +++ b/security/tcp_wrappers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/02/08 03:00:29 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2004/02/10 09:06:55 grant Exp $ DISTNAME= tcp_wrappers_7.6-ipv6.1 PKGNAME= tcp_wrappers-7.6.1 @@ -23,7 +23,9 @@ USE_LIBTOOL= yes ALL_TARGET= netbsd .elif ${OPSYS} == "SunOS" ALL_TARGET= sunos5 -.elif ${OPSYS} == "IRIX" || ${OPSYS} == "Linux" +.elif ${OPSYS} == "IRIX" +ALL_TARGET= ${LOWER_OPSYS:C|\..*||} +.elif ${OPSYS} == "Linux" ALL_TARGET= ${LOWER_OPSYS} .else ALL_TARGET= generic # good luck! |