diff options
author | grant <grant> | 2003-05-06 21:11:24 +0000 |
---|---|---|
committer | grant <grant> | 2003-05-06 21:11:24 +0000 |
commit | ae905099ce4d89ef2127122146611004a0b7cc1e (patch) | |
tree | 6f0877bab5b7474e86ea9a04ca2649f0555b4f1f /net/net-snmp | |
parent | d9c1027347b0f34de1acdcc722dc88494a7dbf74 (diff) | |
download | pkgsrc-ae905099ce4d89ef2127122146611004a0b7cc1e.tar.gz |
remove some unneeded parens, quote a conditional
Diffstat (limited to 'net/net-snmp')
-rw-r--r-- | net/net-snmp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index c7b79ce9978..9cdf663f401 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2003/05/06 21:10:39 grant Exp $ +# $NetBSD: Makefile,v 1.6 2003/05/06 21:11:24 grant Exp $ DISTNAME= net-snmp-5.0.6 CATEGORIES= net @@ -26,7 +26,7 @@ USE_PKGINSTALL= yes USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool -.if (${OPSYS} == "NetBSD") +.if ${OPSYS} == "NetBSD" CFLAGS+= -Dnetbsd1 .endif @@ -79,7 +79,7 @@ pre-configure: ${MKDIR} ${BUILDLINK_DIR}/include/sys ${CP} ${FILESDIR}/disklabel.h ${BUILDLINK_DIR}/include/sys .endif -.if ${OPSYS} == SunOS +.if ${OPSYS} == "SunOS" # # Adapt for the fact that the default I've seen of ac_max_sed_cmds=90 # will not work w/ built-in sed on Solaris. |