This file is indexed.

/usr/src/gcc-4.4/debian/rules.d/binary-proto.mk is in gcc-4.4-source 4.4.7-8ubuntu1.

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
31
32
33
34
35
36
37
38
39
40
41
42
43
arch_binaries  := $(arch_binaries) proto

p_proto	= protoize
d_proto	= debian/$(p_proto)

dirs_proto = \
	$(docdir) \
	$(PF)/share/man/man1 \
	$(PF)/bin
files_proto = \
	$(PF)/bin/{protoize,unprotoize} \
	$(PF)/share/man/man1/{protoize,unprotoize}.1

# ----------------------------------------------------------------------
$(binary_stamp)-proto: $(install_stamp)
	dh_testdir
	dh_testroot
	mv $(install_stamp) $(install_stamp)-tmp

	rm -rf $(d_proto)
	dh_installdirs -p$(p_proto) $(dirs_proto)

ifeq ($(versioned_packages),yes)
	: # rename versioned files back to unversioned ones.
	for i in protoize unprotoize; do \
	  mv $(d)/$(PF)/bin/$$i$(pkg_ver) $(d)/$(PF)/bin/$$i; \
	done
endif
	$(IR) debian/protoize.1 $(d)/$(PF)/share/man/man1/
	ln -sf protoize.1 $(d)/$(PF)/share/man/man1/unprotoize.1
	DH_COMPAT=2 dh_movefiles -p$(p_proto) $(files_proto)

	debian/dh_doclink -p$(p_proto) $(p_base)
	dh_strip -p$(p_proto)
	dh_compress -p$(p_proto)
	dh_fixperms -p$(p_proto)
	dh_shlibdeps -p$(p_proto)
	dh_gencontrol -p$(p_proto) -- -v$(DEB_EVERSION) $(common_substvars)
	dh_installdeb -p$(p_proto)
	dh_md5sums -p$(p_proto)
	dh_builddeb -p$(p_proto)

	trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp)