2007fld has asked for the wisdom of the Perl Monks concerning the following question:

I'm trying to install a Perl Module. perl Makefile.pl runs good. but 'make' can not be found. I'm on a new Suse server. What should I install to have 'make' run?
  • Comment on when install a Perl module, 'make' can not be found

Replies are listed 'Best First'.
Re: when install a Perl module, 'make' can not be found
by halfcountplus (Hermit) on Sep 29, 2010 at 16:55 UTC

    Suse is rpm based, so first try:

    yum search make

    You will get quite a list, you probably want the one like this

    make.x86_64 : A GNU tool which simplifies the build process for users

    Meaning you could try "yum search make | grep GNU" first to shorten the list. If you're not on 64bit, the suffix will probably be .i386 or something. Anyway, to install:

    yum install make.x86_64