diff options
author | eadler <eadler@FreeBSD.org> | 2012-03-24 19:41:43 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-03-24 19:41:43 +0000 |
commit | a3eef43dfb037e531a07691894933a20c769ee56 (patch) | |
tree | 058b463f075c0c6c39e1b170d9f052e6d5cc15a4 /secure/usr.bin | |
parent | e546223a7dd821a4c793b526c0bed8ba4003cf6d (diff) | |
download | FreeBSD-src-a3eef43dfb037e531a07691894933a20c769ee56.zip FreeBSD-src-a3eef43dfb037e531a07691894933a20c769ee56.tar.gz |
Restore the ability to use a non-standard LOCALBASE to sshd
Add the ability to use a non-standard LOCALBASE to ssh
Submitted by: jhb
Reviewed by: des
Approved by: cperciva
MFC after: 0 days (with r233136)
Diffstat (limited to 'secure/usr.bin')
-rw-r--r-- | secure/usr.bin/ssh/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index 619c44a..9304fd5 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -28,6 +28,10 @@ LDADD+= -lgssapi DPADD+= ${LIBCRYPT} ${LIBCRYPTO} LDADD+= -lcrypt -lcrypto +.if defined(LOCALBASE) +CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE}/bin/xauth\" +.endif + .include <bsd.prog.mk> .PATH: ${SSHDIR} |