Displaying 1 result from an estimated 1 matches for "opt_library".
Did you mean:
  ft_library
  
2007 Aug 23
1
missing --vanilla option in INSTALL (PR#9877)
...I'm not sure that this is really a bug, if not I do not understand why should it
be in this way.
Most of the scripts used to build and install new packages calls the R program
with the 
--slave --vanilla command line options. In the INSTALL script however we can
find the following lines
if($opt_library){
    # remove quotes around the library path
    $opt_library =~ s/^['"]//; $opt_library =~ s/['"]$//; #'"
    chdir($opt_library) ||
	die "Error: cannot change to library directory \$opt_library'\n";
    $library = cwd();
    $library = Win32::GetShortPath...