diff options
author | jperkin <jperkin@pkgsrc.org> | 2022-10-25 19:33:14 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2022-10-25 19:33:14 +0000 |
commit | ab44d65269478711efae2f8a9038e82e97b1393b (patch) | |
tree | 903015506ec5f010f208397a4dbbb192baf69552 /net | |
parent | a1a6c8d9b949b56585195e31c519d714f1bc6004 (diff) | |
download | pkgsrc-ab44d65269478711efae2f8a9038e82e97b1393b.tar.gz |
net-snmp: Fix broken logic.
Diffstat (limited to 'net')
-rw-r--r-- | net/net-snmp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index 46367d624f3..409529c9849 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.139 2022/10/18 12:01:52 adam Exp $ +# $NetBSD: Makefile,v 1.140 2022/10/25 19:33:14 jperkin Exp $ .include "Makefile.common" CATEGORIES= net @@ -66,7 +66,7 @@ CONFIGURE_ARGS+= --with-persistent-directory=${NET_SNMP_PERSISTENTDIR} .if !empty(NET_SNMP_MIBDIRS) CONFIGURE_ARGS+= --with-mibdirs=${NET_SNMP_MIBDIRS:Q} .endif -.if ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS" +.if ${OPSYS} == "NetBSD" CONFIGURE_ARGS+= --with-mib-modules="smux host ucd-snmp/diskio mibII/kernel_netbsd" .elif ${OPSYS} == "SunOS" CONFIGURE_ARGS+= --with-mib-modules="smux host ucd-snmp/diskio" |