diff options
author | grant <grant@pkgsrc.org> | 2003-10-12 08:25:17 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-10-12 08:25:17 +0000 |
commit | a242c2803884e9d4421c65c4ded8e4258b7efeb4 (patch) | |
tree | 4903be6efa422352967996e0daebadd019def1fc /security | |
parent | f03c8b486a03702ed4eb23d8ae26a7a653b3164e (diff) | |
download | pkgsrc-a242c2803884e9d4421c65c4ded8e4258b7efeb4.tar.gz |
add a missing .elif OPSYS == NetBSD, which was resulting in passing
"--with-skey=... --without-skey" on Solaris :)
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 0c78e5164f7..aade07cb3fa 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.117 2003/09/23 20:53:52 jschauma Exp $ +# $NetBSD: Makefile,v 1.118 2003/10/12 08:25:17 grant Exp $ DISTNAME= openssh-3.7.1p2 PKGNAME= openssh-3.7.1.2 @@ -78,6 +78,7 @@ LD=${CC} .if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" . include "../../security/skey/buildlink2.mk" CONFIGURE_ARGS+= --with-skey=${BUILDLINK_PREFIX.skey} +.elif ${OPSYS} == "NetBSD" # XXX: NetBSD has 4 args (4: sslen) to skeychallenge instead of 3 #CONFIGURE_ARGS+= --with-skey=/usr CONFIGURE_ARGS+= --without-skey |