From 9fa0f5ddf47b0ab06e50fad0799f328cc9ca3b61 Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Sun, 8 Apr 2012 21:30:17 -0500 Subject: Fix copy'n'paste and code move bugs Change-Id: I9e8d059648c54cf2ffde7674d9f049d4821dbb0a Reviewed-by: Rohan McGovern Reviewed-by: Giuseppe D'Angelo --- build | 4 ++-- 1 file 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); -- cgit v1.2.3