Changeset 2316 in ProjectBuilder for devel/pb/bin/pb


Ignore:
Timestamp:
Sep 7, 2017, 3:15:27 AM (7 years ago)
Author:
Bruno Cornec
Message:

Fix process detection around qemu on mga6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/bin/pb

    r2312 r2316  
    47514751    my $vmcmd = shift;
    47524752    my $vmm = shift;
    4753     my $vexist = 0;     # FALSE by default
     4753    my $vexist = 0;             # FALSE by default
    47544754    my $vmport = undef;         # NONE by default
    47554755
     4756    if ($vmcmd =~ /qemu/) {
     4757        # Remove the suffix as qemu changes it at launch
     4758        $vmcmd =~ s/qemu-.*/qemu/;
     4759    }
    47564760    open(PS, "ps auxhww|") || die "Unable to call ps";
    47574761    while (<PS>) {
Note: See TracChangeset for help on using the changeset viewer.