=================================================================== RCS file: /home/cvs/OpenXM/doc/OpenXM-web/ERRATA.html,v retrieving revision 1.11 retrieving revision 1.13 diff -u -p -r1.11 -r1.13 --- OpenXM/doc/OpenXM-web/ERRATA.html 2000/03/10 08:13:10 1.11 +++ OpenXM/doc/OpenXM-web/ERRATA.html 2000/03/19 10:54:55 1.13 @@ -1,74 +1,37 @@
--
- Wrong: source /xxx/yyy/OpenXM/rc/dot.bash - ===> Correct: source /xxx/yyy/OpenXM/rc/dot.bashrc --
- Wrong: or read dot.bash or dot.cshrc file by the source command. - ===> Correct : or read dot.bashrc or dot.cshrc file by the source command. --
- Pari gp needs a shared library libpari.so.2.0. - So, LD_LIBRARY_PATH must be set properly to use "gp". - Append the following lines to OpenXM/rc/bashrc and - OpenXM/rc/cshrc respectively and type in "make" in OpenXM/rc to generate - dot.bashrc, dot.cshrc and openxm. - bashrc : - LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OpenXM_HOME/lib - export LD_LIBRARY_PATH - cshrc : - if ( ${?LD_LIBRARY_PATH} == 1) then - setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$OpenXM_HOME/lib - else - setenv LD_LIBRARY_PATH $OpenXM_HOME/lib - endif -+
- Wrong: in char *toFullPath(char *s) +ERRATA for 1.1.2 (May 20, 2000) : Minor corrections
- else { - s = which(s,getenv("PATH")); - } - } ++ [1] openxm01-1.1.2.tar.gz (source distribution): + bash$ diff -s Makefile.old Makefile + 13c13 + < (cd packages/doc ; make install) + --- + > -(cd packages/doc ; make install) - ===> Correct: - else { - s = which(s,getenv("PATH")); - } - return(s); <==== Add this line. - } -- - -