| 
			
				 
					Originally Posted by troutman
					
				 
				Thought I'd add what I found as a solution if having troubles installing Scalar.  File is config.pm located in your perl\CPAN directory.  Change the red line below to include the location of NMAKE.exe.  This has worked on 2 installs for me.   
 
 
# This is CPAN.pm's systemwide configuration file. This file provides 
# defaults for users, and the values can be changed in a per-user 
# configuration file. The user-config file is being looked for as 
# ~/.cpan/CPAN/MyConfig.pm. 
 
$CPAN::Config = { 
  'build_cache' => q[10], 
  'build_dir' => q[\.cpan\build], 
  'cache_metadata' => q[1], 
  'cpan_home' => q[\.cpan], 
  'ftp' => q[C:\WINDOWS\system32\ftp.EXE], 
  'ftp_proxy' => q[], 
  'getcwd' => q[cwd], 
  'gpg' => q[], 
  'gzip' => q[], 
  'histfile' => q[\.cpan\histfile], 
  'histsize' => q[100], 
  'http_proxy' => q[], 
  'inactivity_timeout' => q[0], 
  'index_expire' => q[1], 
  'inhibit_startup_message' => q[0], 
  'keep_source_where' => q[\.cpan\sources], 
  'lynx' => q[], 
  'make' => q[d:\eqemu\bin\nmake.exe], 
  'make_arg' => q[], 
  'make_install_arg' => q[], 
  'makepl_arg' => q[], 
  'ncftp' => q[], 
  'ncftpget' => q[], 
  'no_proxy' => q[], 
  'pager' => q[C:\WINDOWS\system32\more.COM], 
  'prerequisites_policy' => q[ask], 
  'scan_cache' => q[atstart], 
  'shell' => q[], 
  'tar' => q[], 
  'term_is_latin' => q[1], 
  'unzip' => q[], 
  'urllist' => [], 
  'wget' => q[], 
}; 
1; 
__END__ 
 
			
		 |