From 42e77edcafe213b4b4593426bab60b0f42ad6853 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sun, 15 Jan 1995 06:19:01 +0000 Subject: [PATCH] The Makefile contained in usr.bin/tconv contains a bogus reference to the absolute path /usr/src/lib/libmytinfo. The enclosed patch fixes this. Submitted by: Remy Card --- usr.bin/tconv/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/tconv/Makefile b/usr.bin/tconv/Makefile index e30d82f109b3..11b45dba3a66 100644 --- a/usr.bin/tconv/Makefile +++ b/usr.bin/tconv/Makefile @@ -1,11 +1,11 @@ # Makefile for tconv -# $Id$ +# $Id: Makefile,v 1.1.1.1 1994/10/09 17:40:30 ache Exp $ PROG= tconv SRCS= tconv.c quit.c MLINKS= tconv.1 tic.1 tconv.1 captoinfo.1 LINKS= ${BINDIR}/tconv ${BINDIR}/tic ${BINDIR}/tconv ${BINDIR}/captoinfo -CFLAGS+= -I/usr/src/lib/libmytinfo -Wall +CFLAGS+= -I${.CURDIR}/../../lib/libmytinfo -Wall DPADD= $(LIBMYTINFO) LDADD= -lmytinfo