diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-08-23 19:14:48 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-08-23 19:14:48 +0000 |
commit | 0305cfcec67037b6c1a85575f2569178bfd914ff (patch) | |
tree | 4d146a6f658f5d702a5e681816db16b5594b771e /secure/usr.bin | |
parent | 1c9be6fb5600555222c6e49564601af1ff9d502b (diff) | |
download | src-0305cfcec67037b6c1a85575f2569178bfd914ff.tar.gz src-0305cfcec67037b6c1a85575f2569178bfd914ff.zip |
Add missing quotes around xauth path
Notes
Notes:
svn path=/head/; revision=65029
Diffstat (limited to 'secure/usr.bin')
-rw-r--r-- | secure/usr.bin/ssh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index 91900bf4ae5c..3ea618697a16 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -37,7 +37,7 @@ DPADD+= ${LIBKRB5} ${LIBCOM_ERR} ${LIBASN1} ${LIBMD} ${LIBCRYPT} .include <bsd.prog.mk> .if defined(X11BASE) -CFLAGS+= -DXAUTH_PATH=${X11BASE}/bin/xauth +CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\" .endif LDADD+= -L${.OBJDIR}/../../lib/libssh -lssh -lcrypto -lutil -lz |