changeset 12240:1696f1b68d24 octave-forge

Provisionally commented out all effective code (file may not be needed anymore)
author prnienhuis
date Sat, 28 Dec 2013 16:07:09 +0000
parents f57e70879583
children ef94fbed65aa
files main/io/post_install.m
diffstat 1 files changed, 12 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/post_install.m	Sat Dec 28 16:06:23 2013 +0000
+++ b/main/io/post_install.m	Sat Dec 28 16:07:09 2013 +0000
@@ -4,16 +4,18 @@
 ## .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
+## Updates:
+## 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
+## 2013-12-28 Provisionally commented out all effective code
 
 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);  ## 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", ... 
-            "Java class libs to the javaclasspath");
-  endif
+#  file = cstrcat (desc.archprefix, filesep, octave_config_info ("canonical_host_type"),
+#                  "-", octave_config_info ("api_version"), filesep, "PKG_ADD");
+#  ## [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", ... 
+#            "Java class libs to the javaclasspath");
+#  endif
 endfunction