This file is indexed.

/usr/src/zfs-0.6.5.6/config/dkms.m4 is in zfs-dkms 0.6.5.6-0ubuntu8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
dnl #
dnl # Prevent manual building in DKMS source tree.
dnl #
AC_DEFUN([ZFS_AC_DKMS_INHIBIT], [
	AC_MSG_CHECKING([for dkms.conf file])
        AS_IF([test -e dkms.conf], [
		AC_MSG_ERROR([
	*** ZFS should not be manually built in the DKMS source tree.
	*** Remove all ZFS packages before compiling the ZoL sources.
	*** Running "make install" breaks ZFS packages.])
        ], [
		AC_MSG_RESULT([not found])
        ])
])