build-systems: Don't use install/fast for custom build systems.

wilder
Michael Pyne 12 years ago
parent 9fb3fb04d1
commit 142cdc201b
  1. 5
      modules/ksb/BuildSystem/KDE4.pm

@ -103,10 +103,13 @@ sub installInternal
{
my $self = shift;
my $module = $self->module();
my $target = 'install/fast';
my @cmdPrefix = @_;
$target = 'install' if $module->getOption('custom-build-command');
return $self->safe_make ({
target => 'install/fast',
target => $target,
logfile => 'install',
message => "Installing g[$module]",
'prefix-options' => [@cmdPrefix],

Loading…
Cancel
Save