1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# TP 20091118
# Adapt the message concerning the wrong-dimension-order bug, which is
# displayed the first time a user uses HDF5 v. > 0.6.2, to Debian
# systems.
--- a/hdf5.i
+++ b/hdf5.i
@@ -204,9 +204,9 @@
"not convert files automatically. Thus you, the user, has to convert your",
"own files. I apologize for this. To facilitate the conversion, I have",
"written (and debugged) a small function: h5old2new (see help page).",
- "In the hdf5 tarball, you should also find a small shell script, h5convert",
+ "On a Debian system, /usr/lib/yorick/bin/h5convert is a small shell script",
"that wraps h5old2new and provide a convenient way to rename bunch of ",
- "files. See the man file (man ./h5convert.1 in the hdf5 directory, or",
+ "files. See the man file (man /usr/share/doc/yorick-hdf5/h5convert.1), or",
"help,h5convert within yorick.",
"","Note that this only concerns multi-dimensional arrays. Other data types",
"are not affected.",
@@ -218,7 +218,8 @@
f=open(Y_USER+".hdf5_convert_warning_done","w");
close,f;
}
-h5v062bug_warning;
+// deactivate this old warning
+//if (!batch()) h5v062bug_warning;
local h5convert;
|