This file is indexed.

/usr/share/aclocal/llnl_prog_jar.m4 is in libsidl-dev 1.4.0.dfsg-8build3.

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
AC_DEFUN([LLNL_PROG_JAR],[
if test "x$JAVAPREFIX" = x; then
  if test "x$JAR" = x; then
    AC_PATH_PROG(JAR,jar)
  fi
else
  if test "x$JAR" = x; then
    AC_PATH_PROG(JAR,jar,"${JAVAPREFIX}/bin:${JAVAPREFIX}:${PATH}")
  fi
fi
if test "x$JAR" = x; then
  AC_MSG_ERROR([no acceptable jar program found in \$PATH])
fi
AC_PROVIDE([$0])dnl
])