diff options
author | jkh <jkh@FreeBSD.org> | 1995-01-15 06:19:01 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-01-15 06:19:01 +0000 |
commit | 26a9ef51ab936d9abb088258560dee6ff470b4c2 (patch) | |
tree | 9d5c645759a7db1dcd3b577d609125cd887fd95b /usr.bin/tconv | |
parent | 0fcc7b937d5a166b7e2cef14bdd9452826b81b47 (diff) | |
download | FreeBSD-src-26a9ef51ab936d9abb088258560dee6ff470b4c2.zip FreeBSD-src-26a9ef51ab936d9abb088258560dee6ff470b4c2.tar.gz |
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 <Remy.Card@masi.ibp.fr>
Diffstat (limited to 'usr.bin/tconv')
-rw-r--r-- | usr.bin/tconv/Makefile | 4 |
1 files 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 |