Kaydet (Commit) e994a910 authored tarafından Peter Foley's avatar Peter Foley Kaydeden (comit) David Tardon

use downloaded rebase.exe with Win8 SDK

Change-Id: Ib7cb49e9c992ba3bd8cc69e7e492f82a493d7053
üst 79fce4dd
...@@ -179,7 +179,13 @@ sub rebase_again ...@@ -179,7 +179,13 @@ sub rebase_again
my $newfiles_ref = shift; my $newfiles_ref = shift;
my @grownfiles; my @grownfiles;
my $solarbin ="$ENV{SOLARVERSION}/$ENV{INPATH}/bin$ENV{UPDMINOREXT}"; my $solarbin ="$ENV{SOLARVERSION}/$ENV{INPATH}/bin$ENV{UPDMINOREXT}";
my $command = "rebase " . $options_string; my $command;
if ( $ENV{REBASE} eq "download" ) {
$command = $ENV{OUTDIR}."/bin/rebase " . $options_string;
}
else {
$command = "rebase " . $options_string;
}
if ( $ENV{WRAPCMD} ) { if ( $ENV{WRAPCMD} ) {
$command = $ENV{WRAPCMD} . " " . $command; $command = $ENV{WRAPCMD} . " " . $command;
} }
...@@ -241,7 +247,13 @@ sub rebase_again ...@@ -241,7 +247,13 @@ sub rebase_again
sub rebase_initially sub rebase_initially
{ {
my ($files_ref, $start_address) = @_; my ($files_ref, $start_address) = @_;
my $command = "rebase "; my $command;
if ( $ENV{REBASE} eq "download" ) {
$command = $ENV{OUTDIR}."/bin/rebase " . $options_string;
}
else {
$command = "rebase " . $options_string;
}
if ( $ENV{WRAPCMD} ) { if ( $ENV{WRAPCMD} ) {
$command = $ENV{WRAPCMD} . " " . $command; $command = $ENV{WRAPCMD} . " " . $command;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment