[Bug 1129443] repeatly deps to perl-devel

bugzilla at redhat.com bugzilla at redhat.com
Wed Aug 13 05:05:21 UTC 2014


https://bugzilla.redhat.com/show_bug.cgi?id=1129443



--- Comment #1 from Ralf Corsepius <rc040203 at freenet.de> ---
What I can gather from this mess, is that there is a dependency between 
perl-IPC-Cmd and perl-ExtUtils-MakeMaker which is (correctly!) pulling in
perl-devel.

>From IPC/Cmd.pm:
...
    require ExtUtils::MakeMaker;

    my @possibles;

    if( File::Spec->file_name_is_absolute($command) ) {
        return MM->maybe_command($command);

    } else {
        for my $dir (
            File::Spec->path,
            File::Spec->curdir
        ) {
            next if ! $dir || ! -d $dir;
            my $abs = File::Spec->catfile( IS_WIN32 ? Win32::GetShortPathName(
$dir ) : $dir, $command);
            push @possibles, $abs if $abs = MM->maybe_command($abs);
        }
    }
...

maybe_command originates from MakeMaker. 

One resolution to this problem would be to eliminate this use case of
"maybe_command" in perl(IPC::Cmd).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=LyNgltfSFr&a=cc_unsubscribe



More information about the perl-devel mailing list