Date: Tue, 21 Apr 1998 08:34:53 -0700 (PDT) From: motoyuki@snipe.rim.or.jp To: freebsd-gnats-submit@FreeBSD.ORG Subject: kern/6375: make depend in /usr/src/lkm/cd9660 fails. Message-ID: <199804211534.IAA25965@hub.freebsd.org>
index | next in thread | raw e-mail
>Number: 6375
>Category: kern
>Synopsis: make depend in /usr/src/lkm/cd9660 fails.
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Tue Apr 21 08:40:02 PDT 1998
>Last-Modified:
>Originator: Motoyuki Konno
>Organization:
Yamanashi Medical University
>Release: FreeBSD-current
>Environment:
FreeBSD asuka.snipe.rim.or.jp 3.0-CURRENT FreeBSD
3.0-CURRENT #0: Tue Apr 21 07:13:13 JST 1998
motoyuki@asuka.snipe.rim.or.jp:/usr/src/sys/compile/ASUKA i386
>Description:
In the /usr/src/lkm/cd9660 directory,
make depend fails because the lack of opt_devfs.h
mkdep -f .depend -a -nostdinc -DCD9660 -DKERNEL -DACTUALLY_LKM_NOT_KERNEL -I- -I/usr/src/lkm/cd9660 -I/usr/src/lkm/cd9660/@ -DVFS_LKM -DMODVNOPS=cd9660_modvnops /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_bmap.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_lookup.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_node.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_rrip.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_util.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_vfsops.c /usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_vnops.c
/usr/src/lkm/cd9660/../../sys/isofs/cd9660/cd9660_vfsops.c:42: opt_devfs.h: No such file or directory
mkdep: compile failed
>How-To-Repeat:
run "make depend" in the /usr/src/lkm/cd9660 directory.
>Fix:
Apply following patch to /usr/src/lkm/cd9660/Makefile:
--- Makefile.old Sat Feb 7 08:54:19 1998
+++ Makefile Wed Apr 22 00:30:41 1998
@@ -3,9 +3,13 @@
.PATH: ${.CURDIR}/../../sys/isofs/cd9660
KMOD= cd9660_mod
SRCS= cd9660_bmap.c cd9660_lookup.c cd9660_node.c cd9660_rrip.c \
- cd9660_util.c cd9660_vfsops.c cd9660_vnops.c
+ cd9660_util.c cd9660_vfsops.c cd9660_vnops.c opt_devfs.h
NOMAN=
VFS_LKM=
CFLAGS+= -DCD9660
+CLEANFILES+= opt_devfs.h
+
+opt_devfs.h:
+ touch opt_devfs.h
.include <bsd.kmod.mk>
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199804211534.IAA25965>
