diff options
author | grant <grant@pkgsrc.org> | 2003-07-30 18:35:53 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-07-30 18:35:53 +0000 |
commit | 6d62e266f773c9a8421bd4a5102605e318f79fd3 (patch) | |
tree | 8e5d30fa3be94cf60d392ef9aaa9a5b6c952c7a8 /security | |
parent | 08f2526e03ef55d45f38cb3b83020cac44e3ace2 (diff) | |
download | pkgsrc-6d62e266f773c9a8421bd4a5102605e318f79fd3.tar.gz |
drop unneeded parens
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 7af5aa51795..70dce24dd49 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.105 2003/07/24 21:25:26 jwise Exp $ +# $NetBSD: Makefile,v 1.106 2003/07/30 18:35:53 grant Exp $ DISTNAME= openssh-3.6.1p2 PKGNAME= openssh-3.6.1.2 @@ -72,7 +72,7 @@ CONFIGURE_ARGS+= --with-privsep-user=${OPENSSH_USER} #MESSAGE_SRC+= ${.CURDIR}/MESSAGE.pam #.endif -.if (${OPSYS} == "Darwin") || (${OPSYS} == "SunOS") +.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" . include "../../security/skey/buildlink2.mk" CONFIGURE_ARGS+= --with-skey=${BUILDLINK_PREFIX.skey} .elif ${OPSYS} == "NetBSD" |