This file is indexed.

/usr/share/dune-common/am/no-check-without-lib is in libdune-common-dev 2.4.1-1.

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
15
16
17
18
19
20
21
22
23
24
25
26
# -*- Makefile -*-

# many tests need parts of libdune. Telling the tests to use
# previously build partial libs is possible but difficult to maintain:
# the SUBDIRS have to be very carefully defined for this to work...
# Additionally, testing with a partial lib is unrealistic.
#
# As users may try to use "make check" without a full build we
# generate a meaningful error message instead of silently failing on a
# lib-dependency

# add a new dependency to automake-internal rule
check-am: libcheck

libcheck: libcheck-FORCE
	@if test ! -f $(top_builddir)/lib/libdune.la ; then \
	  echo ; \
	  echo '   libdune not built, checks will not work yet!' ; \
	  echo '   Run a full make to fix this' ; \
	  echo ; \
	  exit 1; \
	fi

libcheck-FORCE:

.PHONY: libcheck libcheck-FORCE