pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/tcp_wrappers fix build on IRIX by using the r...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/903913b2a761
branches:  trunk
changeset: 468079:903913b2a761
user:      grant <grant%pkgsrc.org@localhost>
date:      Tue Feb 10 09:06:55 2004 +0000

description:
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:

 security/tcp_wrappers/Makefile |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 185e53bd4ce8 -r 903913b2a761 security/tcp_wrappers/Makefile
--- a/security/tcp_wrappers/Makefile    Tue Feb 10 09:01:28 2004 +0000
+++ b/security/tcp_wrappers/Makefile    Tue Feb 10 09:06:55 2004 +0000
@@ -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 @@
 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!



Home | Main Index | Thread Index | Old Index