mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-04 23:46:29 +08:00
Avoid 'make install' on Windows
We normally don't 'make install' on Windows, so avoid it for the alpha. Change-Id: Ia5563791be249ea04abdda64b94e15afb2608add
This commit is contained in:
committed by
Simo Fält
parent
14b6752894
commit
0cfef634ed
5
build
5
build
@@ -371,7 +371,10 @@ sub build_project
|
||||
}
|
||||
$self->exeLowPriv("cd $module && $build_command") && die "'cd $module && $build_command' failed: $?";
|
||||
$install_command = "$self->{MAKE} install" if (!defined $install_command);
|
||||
$self->exeHighPriv("cd $module && $install_command") && die "'cd $module && $install_command failed: $?";
|
||||
### TODO: Should be fixed after the alpha
|
||||
unless ("$Config{osname}" =~ /mswin/i) {
|
||||
$self->exeHighPriv("cd $module && $install_command") && die "'cd $module && $install_command failed: $?";
|
||||
}
|
||||
$self->mark_as_finished($module);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user