Code

Improve "can't find" error msg for pkgconfig
authorishmal <ishmal@users.sourceforge.net>
Sat, 14 Jun 2008 23:16:13 +0000 (23:16 +0000)
committerishmal <ishmal@users.sourceforge.net>
Sat, 14 Jun 2008 23:16:13 +0000 (23:16 +0000)
buildtool.cpp

index bc6da92d3b6b9865603d5357203e57713dea1646..b0570ed329755f48969d9e2d84a889218c357c19 100644 (file)
@@ -38,7 +38,7 @@
  *
  */
 
-#define BUILDTOOL_VERSION  "BuildTool v0.9.4"
+#define BUILDTOOL_VERSION  "BuildTool v0.9.5"
 
 #include <stdio.h>
 #include <fcntl.h>
@@ -5407,7 +5407,11 @@ bool PkgConfig::query(const String &pkgName)
     fname.append(".pc");
 
     if (!readFile(fname))
+        {
+        error("Cannot find package '%s'. Do you have it installed?",
+                       pkgName.c_str());
         return false;
+        }
     
     return true;
 }