Date: Sun, 15 Jan 1995 03:19:20 +0100 (MET) From: Remy.Card@masi.ibp.fr (Remy CARD) To: hackers@FreeBSD.org Subject: Another broken path in a Makefile Message-ID: <199501150219.DAA19913@ares.ibp.fr>
index | next in thread | raw e-mail
Hi,
The Makefile contained in usr.bin/tconv contains a bogus
reference to the absolute path /usr/src/lib/libmytinfo. The enclosed
patch fixes this.
Can someone please commit it?
Thanks
Remy
*** usr.bin/tconv/Makefile.orig Sun Jan 15 01:16:02 1995
--- usr.bin/tconv/Makefile Sun Jan 15 01:16:30 1995
***************
*** 5,11 ****
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
DPADD= $(LIBMYTINFO)
LDADD= -lmytinfo
--- 5,11 ----
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${.CURDIR}/../../lib/libmytinfo -Wall
DPADD= $(LIBMYTINFO)
LDADD= -lmytinfo
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199501150219.DAA19913>
