This file is indexed.

/usr/share/doc/dpatch/examples/dpatch/01_config.dpatch is in dpatch 2.0.38.

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
#! /bin/sh -e
## config.dpatch
## Ralf Treinen <treinen@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: replace all config.{guess,sub} by the vesion installed in
## DP: /usr/share/misc

dpatch_patch ()
{
	find . -name config.guess -o -name config.sub \
	 	| tar cf debian/patched/config.guess+sub.tar -T -
	find . -name config.guess \
		-exec ln -sf /usr/share/misc/config.guess '{}' \;
	find . -name config.sub \
		-exec ln -sf /usr/share/misc/config.sub '{}' \;
}

dpatch_unpatch ()
{
	tar xf debian/patched/config.guess+sub.tar
}

DPATCH_LIB_NO_DEFAULT=1

. /usr/share/dpatch/dpatch.lib.sh

# arch-tag: 8a610a57-687b-4395-8ff2-79265c0a4eb3