Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 03:17:51 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-10-10 03:17:51 +0300
commit2f967b7ea49eb1a36a05dd4c007bd2edcc77d0b9 (patch)
tree384ee467238d77b4dd064145ac0f2ed9b7d7a60e /qmake/pkgconfig.pri
parent91f16f17f19a44b5444143e305561a54500bf742 (diff)
qmake: remove Qt 4 logic
Diffstat (limited to 'qmake/pkgconfig.pri')
-rw-r--r--qmake/pkgconfig.pri8
1 files changed, 1 insertions, 7 deletions
diff --git a/qmake/pkgconfig.pri b/qmake/pkgconfig.pri
index 44bd32f31..06011bc07 100644
--- a/qmake/pkgconfig.pri
+++ b/qmake/pkgconfig.pri
@@ -5,13 +5,7 @@
# Allow cross-building by making a call to return the pkg-config
# that the user supplied to the build.
-# pkgConfigExecutable() is part of Qt5.
-# If building with Qt4, pkg-config is called instead
-isEqual(QT_MAJOR_VERSION, 5) {
- PKG_CONFIG = $$pkgConfigExecutable()
-} else {
- PKG_CONFIG = "pkg-config"
-}
+PKG_CONFIG = $$pkgConfigExecutable()
# must_pkgconfig(pkg)
#