From 26a9ef51ab936d9abb088258560dee6ff470b4c2 Mon Sep 17 00:00:00 2001 From: jkh Date: Sun, 15 Jan 1995 06:19:01 +0000 Subject: 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 e30d82f..11b45db 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 -- cgit v1.1