This file is indexed.

/usr/share/bakefile/presets/wx_presets.py is in wx-common 3.0.0-2.

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
# We use 'COMPILER_PREFIX' option in places where bakefile doesn't like it, so
# we must register a substitution function for it that provides additional
# knowledge about the option (in this case that it does not contain dir
# separators and so utils.nativePaths() doesn't have to do anything with it):

from utils import addSubstituteCallback

def __noopSubst(name, func, caller):
    return '$(%s)' % name
addSubstituteCallback('COMPILER_PREFIX', __noopSubst)