diff options
author | ache <ache@FreeBSD.org> | 1996-01-06 23:10:25 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-01-06 23:10:25 +0000 |
commit | 64611dcc5ee898bd48d5705a1c79c69164c0c555 (patch) | |
tree | ddd17986c7ce9b7049f287914eb3ba45b2bb3643 /sys/modules | |
parent | 03a6f5095b239c090cf9c0a73b00c36b64ba6e21 (diff) | |
download | FreeBSD-src-64611dcc5ee898bd48d5705a1c79c69164c0c555.zip FreeBSD-src-64611dcc5ee898bd48d5705a1c79c69164c0c555.tar.gz |
Add opt_sysvipc.h rules similar as in ibcs2 Makefile
(make fails in old case)
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/linux/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index ae0e4b4..8f122dd 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -1,8 +1,9 @@ -# $Id: Makefile,v 1.1 1995/06/25 17:29:46 sos Exp $ +# $Id: Makefile,v 1.2 1995/12/29 22:10:49 sos Exp $ .PATH: ${.CURDIR}/../../sys/i386/linux KMOD= linux_mod -SRCS= linux.c linux_file.c linux_ioctl.c linux_misc.c linux_signal.c \ +SRCS= opt_sysvipc.h \ + linux.c linux_file.c linux_ioctl.c linux_misc.c linux_signal.c \ linux_generic.c linux_ipc.c linux_socket.c linux_stats.c \ linux_dummy.c linux_sysent.c imgact_linux.c vnode_if.h NOMAN= @@ -13,4 +14,7 @@ afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/linux /usr/bin +opt_sysvipc.h: + touch opt_sysvipc.h + .include <bsd.kmod.mk> |