diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-09-23 20:53:52 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-09-23 20:53:52 +0000 |
commit | f4191307404ead7b50c0742e057c2c589a598c36 (patch) | |
tree | 2bf6efd0177f316e841e382ec82ae77af8ba4949 /security | |
parent | e47d331a3a91c25dc294e6a1dcb53d84d70b8d46 (diff) | |
download | pkgsrc-f4191307404ead7b50c0742e057c2c589a598c36.tar.gz |
On non-SunOS, bring back
LD=${CC}
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 1d2247e4859..0c78e5164f7 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.116 2003/09/23 19:33:14 jschauma Exp $ +# $NetBSD: Makefile,v 1.117 2003/09/23 20:53:52 jschauma Exp $ DISTNAME= openssh-3.7.1p2 PKGNAME= openssh-3.7.1.2 @@ -70,8 +70,11 @@ CONFIGURE_ARGS+= --with-privsep-user=${OPENSSH_USER} .if ${OPSYS} == "SunOS" LIBS+= -lc +.else +LD=${CC} .endif + .if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS" . include "../../security/skey/buildlink2.mk" CONFIGURE_ARGS+= --with-skey=${BUILDLINK_PREFIX.skey} |