[Slim-Checkins] r9392 - /trunk/server/Bin/build-perl-modules.pl
dsully at svn.slimdevices.com
dsully at svn.slimdevices.com
Sun Sep 3 16:50:43 PDT 2006
Author: dsully
Date: Sun Sep 3 16:50:41 2006
New Revision: 9392
URL: http://svn.slimdevices.com?rev=9392&view=rev
Log:
Bug: 4021
Description: Fix YAML::Syck prompting yes.
Modified:
trunk/server/Bin/build-perl-modules.pl
Modified: trunk/server/Bin/build-perl-modules.pl
URL: http://svn.slimdevices.com/trunk/server/Bin/build-perl-modules.pl?rev=9392&r1=9391&r2=9392&view=diff
==============================================================================
--- trunk/server/Bin/build-perl-modules.pl (original)
+++ trunk/server/Bin/build-perl-modules.pl Sun Sep 3 16:50:41 2006
@@ -57,11 +57,6 @@
'env' => [qw(DBI-1.50/blib/lib: DBI-1.50/blib/arch)],
},
-
- 'YAML-Syck-0.64' => {
-
- 'Makefile.PL' => ' < y',
- },
);
sub main {
@@ -108,6 +103,9 @@
# Let the build process use modules installed already:
$ENV{'PERL5LIB'} = "$slimServerPath/CPAN";
+ # Tell MakeMaker to always use the default when prompted.
+ $ENV{'PERL_MM_USE_DEFAULT'} = 1;
+
# This is where the binaries will end up.
my $cpanDest = "$slimServerPath/CPAN/arch/$version/$archname/auto";
@@ -239,6 +237,8 @@
die "There was a problem creating Makefile - exiting!\n";
}
+ exit;
+
print "Building..\n";
`make`;
More information about the checkins
mailing list