aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2012-04-08 21:30:17 -0500
committerQt by Nokia <qt-info@nokia.com>2012-04-20 18:51:45 +0200
commit9fa0f5ddf47b0ab06e50fad0799f328cc9ca3b61 (patch)
treecaf7800a629d3e2c61e2e6fd06597796f48f5087 /build
parent9be91b36b53784268006667ce7a10aa7dbcca535 (diff)
Fix copy'n'paste and code move bugs
Change-Id: I9e8d059648c54cf2ffde7674d9f049d4821dbb0a Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Giuseppe D'Angelo <dangelog@gmail.com>
Diffstat (limited to 'build')
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index 3a08d2e0..a4fd74fd 100755
--- a/build
+++ b/build
@@ -422,9 +422,9 @@ sub build_project
my $install_command = $self->{'instcmds'}->{$module};
if (!defined $build_command) {
if (!-e "$module/Makefile") {
- $self->exeLowPriv("cd $module && qmake -r") && die "'cd $module && $build_command' failed: $?";
+ $self->exeLowPriv("cd $module && qmake -r") && die "'cd $module && qmake -r' failed: $?";
}
- $build_command = "$self->{MAKE} $self->{MAKEOPTS}" if (!defined $build_command);
+ $build_command = "$self->{MAKE} $self->{MAKEOPTS}";
}
$self->exeLowPriv("cd $module && $build_command") && die "'cd $module && $build_command' failed: $?";
$install_command = "$self->{MAKE} install" if (!defined $install_command);