This file is indexed.

/usr/share/qt5/mkspecs/features/qscintilla2.prf is in libqt5scintilla2-dev 2.8.1-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
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
greaterThan(QT_MAJOR_VERSION, 4) {
    QT += widgets printsupport
}

INCLUDEPATH += $$[QT_INSTALL_HEADERS]

LIBS += -L$$[QT_INSTALL_LIBS]

CONFIG(debug, debug|release) {
    mac: {
        LIBS += -lqscintilla2_debug
    } else {
        win32: {
            LIBS += -lqscintilla2d
        } else {
            LIBS += -lqscintilla2
        }
    }
} else {
    greaterThan(QT_MAJOR_VERSION, 4) {
        LIBS += -lqt5scintilla2
       }
        else {
    LIBS += -lqscintilla2
        }
}