diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 16:38:45 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 16:38:45 +0000 |
commit | 5053ea7fe5a530d2ac4a3f801aecec2db34f7393 (patch) | |
tree | 8a9b93d4f7bd41411ee16aa94af759066970d93c /lib/libtermcap | |
parent | 5819170b8cd956ae523c31a05fbdf86e91450838 (diff) | |
download | FreeBSD-src-5053ea7fe5a530d2ac4a3f801aecec2db34f7393.zip FreeBSD-src-5053ea7fe5a530d2ac4a3f801aecec2db34f7393.tar.gz |
oops, install termcap.h from ${.CURDIR}, not the obj dir.
Pointed out by: asami
Diffstat (limited to 'lib/libtermcap')
-rw-r--r-- | lib/libtermcap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtermcap/Makefile b/lib/libtermcap/Makefile index 43974a8..f4b338a 100644 --- a/lib/libtermcap/Makefile +++ b/lib/libtermcap/Makefile @@ -20,7 +20,7 @@ LINKS+= ${LIBDIR}/libtermcap_p.a ${LIBDIR}/libtermlib_p.a .endif beforeinstall: - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 termcap.h \ - ${DESTDIR}/usr/include + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/termcap.h \ + ${DESTDIR}/usr/include .include <bsd.lib.mk> |