summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-12-19 16:13:16 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-07 19:45:15 +0100
commit183b862fe0bf89cb329706f29b6b421c73e20d3e (patch)
treec92f74f926bd25139011931b1200f5741bac05a0 /mkspecs
parent805954119958d660cfc156681c7e3fb7ca7c0b44 (diff)
make the pkg-config error message more precise
while the meaning of the error message is actually pretty obvious from the context, some people apparently expect an equivalence with their package manager's terminology. Change-Id: Ie7a31887bf5086e5d1d7de7e339a6d08571a4d01 Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/link_pkgconfig.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/link_pkgconfig.prf b/mkspecs/features/link_pkgconfig.prf
index 4e36b7c83c..44d1a4c045 100644
--- a/mkspecs/features/link_pkgconfig.prf
+++ b/mkspecs/features/link_pkgconfig.prf
@@ -7,7 +7,7 @@ for(ever) {
libvar = LIBS$$pkgsfx
for(PKGCONFIG_LIB, $$list($$unique($$pkgvar))) {
# don't proceed if the .pro asks for a package we don't have!
- !packagesExist($$PKGCONFIG_LIB):error("Package $$PKGCONFIG_LIB not found")
+ !packagesExist($$PKGCONFIG_LIB): error("$$PKGCONFIG_LIB development package not found")
PKGCONFIG_CFLAGS = $$system($$PKG_CONFIG --cflags $$PKGCONFIG_LIB)