Date: Fri, 25 Feb 2000 12:24:22 +0200 (SAT) From: John Hay <jhay@mikom.csir.co.za> To: peter@freebsd.org, current@freebsd.org Subject: etc/Makefile patch Message-ID: <200002251024.MAA96596@zibbi.mikom.csir.co.za>
next in thread | raw e-mail | index | archive | help
I found a missing / in the .if that protects the addition of the ssh
config files. The result is that they will never be installed. With
this patch mergemaster was able to install them.
John
--
John Hay -- John.Hay@mikom.csir.co.za
Index: etc/Makefile
===================================================================
RCS file: /home/ncvs/src/etc/Makefile,v
retrieving revision 1.215
diff -u -r1.215 Makefile
--- etc/Makefile 2000/02/25 05:16:44 1.215
+++ etc/Makefile 2000/02/25 09:08:51
@@ -20,7 +20,7 @@
${.CURDIR}/../usr.bin/mail/misc/mail.rc \
${.CURDIR}/../usr.bin/locate/locate/locate.rc
-.if exists(${.CURDIR}../crypto) && !defined(NO_OPENSSH)
+.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
BIN1+= ${.CURDIR}/../crypto/openssh/ssh_config \
${.CURDIR}/../crypto/openssh/sshd_config
.endif
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002251024.MAA96596>
