This file is indexed.

/usr/share/cernlib/config/imake_boot is in cernlib-base-dev 20061220+dfsg3-2.

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

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
#!/bin/sh

if [ "$CVSCOSRC" = "" ] ; then
        echo YOU must set CVSCOSRC first
        echo " try : setenv CVSCOSRC
 /afs/.cern.ch/asis/share/cern/97a/src"
        echo " or :
 CVSCOSRC=/afs/.cern.ch/asis/share/cern/97a/src;export CVSCOSRC"
        exit 1
fi
if [ -f Imakefile ] ; then
	imake -DUseInstalled -I$CVSCOSRC/config \
		-DTOPDIR=`/bin/pwd` -DCURDIR= -fImakefile
else
	imake -DUseInstalled -I$CVSCOSRC/config \
		-DTOPDIR=`/bin/pwd` -DCURDIR= -f$CVSCOSRC/Imakefile
fi