[Midnightbsd-cvs] src [11373] trunk/libexec/telnetd/Makefile: fix paths

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Jul 6 09:53:13 EDT 2018


Revision: 11373
          http://svnweb.midnightbsd.org/src/?rev=11373
Author:   laffer1
Date:     2018-07-06 09:53:12 -0400 (Fri, 06 Jul 2018)
Log Message:
-----------
fix paths

Modified Paths:
--------------
    trunk/libexec/telnetd/Makefile

Modified: trunk/libexec/telnetd/Makefile
===================================================================
--- trunk/libexec/telnetd/Makefile	2018-07-06 13:52:59 UTC (rev 11372)
+++ trunk/libexec/telnetd/Makefile	2018-07-06 13:53:12 UTC (rev 11373)
@@ -1,5 +1,5 @@
 # $MidnightBSD$
-# $FreeBSD: src/libexec/telnetd/Makefile,v 1.26 2005/06/10 06:12:51 des Exp $
+# $FreeBSD: stable/10/libexec/telnetd/Makefile 321267 2017-07-20 00:52:11Z ngie $
 
 # Do not define -DKLUDGELINEMODE, as it does not interact well with many
 # telnet implementations.
@@ -6,7 +6,7 @@
 
 .include <bsd.own.mk>
 
-TELNETDIR=	${.CURDIR}/../../contrib/telnet
+TELNETDIR=	${SRCTOP}/contrib/telnet
 .PATH:		${TELNETDIR}/telnetd
 
 PROG=		telnetd
@@ -28,11 +28,12 @@
 CFLAGS+=	-I${TELNETDIR}
 CFLAGS+=	-I${TELNETDIR}/telnet
 
-LIBTELNET=	${.OBJDIR}/../../lib/libtelnet/libtelnet.a
+LIBTELNET=	${OBJTOP}/lib/libtelnet/libtelnet.a
 
 DPADD=		${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
 LDADD=		-lutil -ltermcap ${LIBTELNET}
 
+# XXX for src/release/picobsd
 .if !defined(RELEASE_CRUNCH)
 .if ${MK_OPENSSL} != "no"
 SRCS+=		authenc.c



More information about the Midnightbsd-cvs mailing list