diff options
author | wollman <wollman@FreeBSD.org> | 1994-12-11 21:27:14 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-12-11 21:27:14 +0000 |
commit | 3f947438b0ddd7b750c603886c24af30d969add3 (patch) | |
tree | 454d1199d1b0b409fd23c4013bbea15456ae789f /sys/modules/ibcs2 | |
parent | b40926ab7c0a9dd6a560c549a92f09893ea65fe8 (diff) | |
download | FreeBSD-src-3f947438b0ddd7b750c603886c24af30d969add3.zip FreeBSD-src-3f947438b0ddd7b750c603886c24af30d969add3.tar.gz |
install command was missing a ${DESTDIR}.
Diffstat (limited to 'sys/modules/ibcs2')
-rw-r--r-- | sys/modules/ibcs2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ibcs2/Makefile b/sys/modules/ibcs2/Makefile index 482ac1a..83be90f 100644 --- a/sys/modules/ibcs2/Makefile +++ b/sys/modules/ibcs2/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1994/10/14 22:56:40 sos Exp $ +# $Id: Makefile,v 1.4 1994/10/27 23:36:57 wollman Exp $ .PATH: ${.CURDIR}/../../sys/i386/ibcs2 KMOD= ibcs2_mod @@ -11,6 +11,6 @@ CLEANFILES+= vnode_if.h vnode_if.c afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.CURDIR}/ibcs2 /usr/bin + ${.CURDIR}/ibcs2 ${DESTDIR}/usr/bin .include <bsd.kmod.mk> |