From 27e4fe5a23d5eaefef5e7fc38a981477bc094d91 Mon Sep 17 00:00:00 2001 From: Tobias Hunger <tobias.hunger@digia.com> Date: Mon, 27 May 2013 13:01:09 +0200 Subject: [PATCH] Qbs: Fix qbs build syntax Change-Id: Ifbfc128b3785941d0c6ec1789f1c85d2c602738a Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> --- src/plugins/qbsprojectmanager/qbsbuildstep.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp index 7e21ff09d9e..2a1126b3bdf 100644 --- a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp +++ b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp @@ -381,13 +381,13 @@ void QbsBuildStepConfigWidget::updateState() const int idx = (buildVariant == QLatin1String(Constants::QBS_VARIANT_DEBUG)) ? 0 : 1; m_ui->buildVariantComboBox->setCurrentIndex(idx); - QString command = QLatin1String("qbs "); + QString command = QLatin1String("qbs build "); if (m_step->dryRun()) command += QLatin1String("--dry-run "); if (m_step->keepGoing()) command += QLatin1String("--keep-going "); command += QString::fromLatin1("--jobs %1 ").arg(m_step->maxJobs()); - command += QString::fromLatin1("build profile:%1 %2").arg(m_step->profile(), buildVariant); + command += QString::fromLatin1("profile:%1 %2").arg(m_step->profile(), buildVariant); QString summary = tr("<b>Qbs:</b> %1").arg(command); if (m_summary != summary) { -- GitLab