Subject: | Compatibiliy issue with el4: Too early to specify a build action 'Build'. Do 'Build Build' instead. make: *** [Build] Error 2 |
There is an install issue with the module in el4/centos4:
Try this in el4/centos4:
% tar -xzf Config-IniFiles-2.48.tar.gz
% cd Config-IniFiles-2.48
% perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Config::IniFiles
% make
cp lib/Config/IniFiles.pm blib/lib/Config/IniFiles.pm
Manifying blib/man3/Config::IniFiles.3pm
/usr/bin/perl "-Iblib/arch" "-Iblib/lib" Build.PL Build
Too early to specify a build action 'Build'. Do 'Build Build' instead.
make: *** [Build] Error 2
The google solution from http://www.cpanforum.com/threads/373 is working
here too:
Just add the line 'PL_FILES => {},' in the Makefile.PL and everything is
fine.
Thanks.