This file is indexed.

/usr/lib/perl5/Gnome2/GConf/Install/Files.pm is in libgnome2-gconf-perl 1.044-4.

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
27
28
29
30
package Gnome2::GConf::Install::Files;

$self = {
          'inc' => '-pthread -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gconf/2   -I./build ',
          'typemaps' => [
                          'gconfperl.typemap',
                          'gconf.typemap'
                        ],
          'deps' => [
                      'Glib'
                    ],
          'libs' => '-lgconf-2 -lglib-2.0  '
        };


# this is for backwards compatiblity
@deps = @{ $self->{deps} };
@typemaps = @{ $self->{typemaps} };
$libs = $self->{libs};
$inc = $self->{inc};

	$CORE = undef;
	foreach (@INC) {
		if ( -f $_ . "/Gnome2/GConf/Install/Files.pm") {
			$CORE = $_ . "/Gnome2/GConf/Install/";
			last;
		}
	}

1;