Displaying 2 results from an estimated 2 matches for "intnam".
Did you mean:
ingnam
2007 Oct 02
0
patch: allow R CMD build exclude patterns to match symlinks
...================
--- src/scripts/build.in (revision 43045)
+++ src/scripts/build.in (working copy)
@@ -171,6 +171,24 @@
$log->message("removing junk files");
find(\&unlink_junk_files, $pkgdir);
+ chdir(dirname($pkgdir));
+ my $filename = "${intname}_" . $description->{"Version"} . ".tar";
+ my $filepath = &file_path($startdir, $filename);
+ R_system(join(" ",
+ ("$tar chf",
+ &shell_quote_file_path($filepath),
+ "$pkgname"...
2012 Sep 09
1
Error msg in rpanel
I am working on the r panel package. Now if i have a function that uses a
radiogroup button, and if i attempt to run the function from inside the
rpanel menu, i get this error:
Error in panel$intname : $ operator is invalid for atomic vectors
However if i run the function per se i.e. not from inside the rpanel
menu, but by calling it independently, the above error doesn't appear.
Here is a simple example. Try running the whole code versus just
running the add() function. The former result...