Jos I. Boumans [Mon, 15 Dec 2008 19:07:04 +0000 (20:07 +0100)]
From: "Jos I. Boumans" <jos@dwim.org>
Message-Id: <
E69CF940-98A5-41C1-B145-32ACED142655@dwim.org>
(Fixes test failures caused by IPC-Cmd upgrade)
p4raw-id: //depot/perl@35119
use vars qw( @EXPORT @ISA $VERSION );
@EXPORT = qw( shell fetch get install );
@ISA = qw( Exporter );
- $VERSION = "0.84"; #have to hardcode or cpan.org gets unhappy
+ $VERSION = "0.84_01"; #have to hardcode or cpan.org gets unhappy
}
### purely for backward compatibility, so we can call it from the commandline:
$conf->set_program( pager => '' );
### dmq tells us that we should run with /nologo
- ### if using nmake, as it's very noise otherwise.
+ ### if using nmake, as it's very noisy otherwise.
{ my $make = $conf->get_program('make');
- if( $make and basename($make) =~ /^nmake/i and
- $make !~ m|/nologo|
- ) {
- $make .= ' /nologo';
- $conf->set_program( make => $make );
+ if( $make and basename($make) =~ /^nmake/i ) {
+ $conf->set_conf( makeflags => '/nologo' );
}
}