summaryrefslogtreecommitdiff
path: root/ACE/bin/PerlACE/Process_Unix.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/PerlACE/Process_Unix.pm')
-rw-r--r--ACE/bin/PerlACE/Process_Unix.pm14
1 files changed, 4 insertions, 10 deletions
diff --git a/ACE/bin/PerlACE/Process_Unix.pm b/ACE/bin/PerlACE/Process_Unix.pm
index 118e149479f..487a2880abb 100644
--- a/ACE/bin/PerlACE/Process_Unix.pm
+++ b/ACE/bin/PerlACE/Process_Unix.pm
@@ -353,16 +353,10 @@ sub CommandLine ()
if (defined $ENV{'ACE_TEST_VERBOSE'}) {
print STDERR "INFO: created run script [",$self->{SCRIPTFILE},"]\n", $run_script;
}
- if (defined $self->{TARGET} &&
- (defined $self->{TARGET}->{TARGET_FSROOT} ||
- defined $self->{TARGET}->{TEST_ROOT})) {
- # Already written to proper dir
- } else {
- if ($self->{TARGET}->PutFile ($self->{SCRIPTFILE}) == -1) {
- print STDERR "ERROR: Failed to copy <", $self->{SCRIPTFILE},
- "> to target \n";
- return -1;
- }
+ if ($self->{TARGET}->PutFile ($self->{SCRIPTFILE}) == -1) {
+ print STDERR "ERROR: Failed to copy <", $self->{SCRIPTFILE},
+ "> to target \n";
+ return -1;
}
$commandline = "$shell \"source $tgt_exedir/".basename ($self->{SCRIPTFILE})."\"";