changeset 12238:dd02e2ffef97 octave-forge

Commented out unlink command; it appears this file isn't required anymore
author prnienhuis
date Fri, 20 Dec 2013 22:23:23 +0000
parents 49227f295ef9
children f57e70879583
files main/io/post_install.m
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/post_install.m	Fri Dec 20 22:16:30 2013 +0000
+++ b/main/io/post_install.m	Fri Dec 20 22:23:23 2013 +0000
@@ -4,10 +4,13 @@
 ## .m directory (since chk_spreadsheet_support is there), when called from the
 ## .oct directory it fails since the package hasn't been loaded yet
 
+## Update 2013-12-20: Doesn't seem to be needed; io package loads OK and properly
+##                    adds java class libs to the javaclasspath => unlink commented out
+
 function post_install (desc)
   file = cstrcat (desc.archprefix, filesep, octave_config_info ("canonical_host_type"),
                   "-", octave_config_info ("api_version"), filesep, "PKG_ADD");
-  [err, msg] = unlink (file);
+  ## [err, msg] = unlink (file);  ## Currently commented out
   if (err)
     warning ("Unable to remove PKG_ADD: %s", msg);
     printf ("For spreadsheet I/O you may need to manually add the required\n", ...