Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28163/lib/Module/Build
Modified Files:
Compat.pm
Log Message:
Process PREFIX, DESTDIR, and INSTALL_BASE args to 'make install'
Index: Compat.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Compat.pm,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- Compat.pm 7 Jun 2005 21:47:47 -0000 1.62
+++ Compat.pm 17 Jun 2005 04:27:57 -0000 1.63
@@ -18,6 +18,9 @@
POLLUTE => sub { ('--extra_compiler_flags', '-DPERL_POLLUTE') },
INSTALLDIRS => sub {local $_ = shift; 'installdirs=' . (/^perl$/ ? 'core' : $_) },
LIB => sub { ('--install_path', 'lib='.shift()) },
+
+ # Some names they have in common
+ map {$_, lc($_)} qw(DESTDIR PREFIX INSTALL_BASE),
);
|