pkgsrc/x11/qt4-creator/patches/patch-aj
adam 1cd9e16801 Changes 2.0.1:
* Compatibility with Qt-4.7.x
2010-11-18 22:52:04 +00:00

13 lines
647 B
Text

$NetBSD: patch-aj,v 1.2 2010/11/18 22:52:04 adam Exp $
--- src/plugins/projectexplorer/debugginghelper.cpp.orig 2010-08-24 07:46:09.000000000 +0000
+++ src/plugins/projectexplorer/debugginghelper.cpp
@@ -231,7 +231,7 @@ QString DebuggingHelperLibrary::buildDeb
output += newline;;
if (!makeFullPath.isEmpty()) {
output += QCoreApplication::translate("ProjectExplorer::DebuggingHelperLibrary", "Running %1 ...\n").arg(makeFullPath);
- proc.start(makeFullPath, QStringList());
+ proc.start(makeFullPath, QStringList() << "install");
proc.waitForFinished();
output += proc.readAll();
} else {