# HG changeset patch # User jwe # Date 869150682 0 # Node ID 132c83a7b706a0c5ecc67da8d169f3af0cb28644 # Parent ca9677cdb62e8ff0030457e8417b4b54369b9a16 [project @ 1997-07-17 14:43:32 by jwe] diff --git a/doc/interpreter/install.texi b/doc/interpreter/install.texi --- a/doc/interpreter/install.texi +++ b/doc/interpreter/install.texi @@ -406,6 +406,20 @@ In any case, please report this as a bug since it might be possible to modify Octave's configuration script to automatically determine the proper thing to do. + +@item +After installing the binary distribution of Octave in an alternate +directory, the Emacs command @code{run-octave} doesn't work. Emacs +hangs in @code{accept-process-output} in @code{inferior-octave-startup}. + +This seems to be a problem with executing a shell script using the +comint package. You can avoid the problem by changing the way Octave is +installed to eliminate the need for the shell script. You can either +compile and install Octave using the source distribution, reinstall the +binary distribution in the default directory, or copy the commands in +the octave shell script wrapper to your shell startup files (and the +shell startup files for anyone else who is using Octave) and then +rename the file @file{octave.bin} to be @file{octave}. @end itemize @node Binary Distributions, , Installation Problems, Installation diff --git a/test/octave.test/system/getegid-1.m b/test/octave.test/system/getegid-1.m --- a/test/octave.test/system/getegid-1.m +++ b/test/octave.test/system/getegid-1.m @@ -1,1 +1,1 @@ -getegid () > 0 +getegid () >= 0 diff --git a/test/octave.test/system/geteuid-1.m b/test/octave.test/system/geteuid-1.m --- a/test/octave.test/system/geteuid-1.m +++ b/test/octave.test/system/geteuid-1.m @@ -1,1 +1,1 @@ -geteuid () > 0 +geteuid () >= 0 diff --git a/test/octave.test/system/getgid-1.m b/test/octave.test/system/getgid-1.m --- a/test/octave.test/system/getgid-1.m +++ b/test/octave.test/system/getgid-1.m @@ -1,1 +1,1 @@ -getgid () > 0 +getgid () >= 0 diff --git a/test/octave.test/system/getuid-1.m b/test/octave.test/system/getuid-1.m --- a/test/octave.test/system/getuid-1.m +++ b/test/octave.test/system/getuid-1.m @@ -1,1 +1,1 @@ -getuid () > 0 +getuid () >= 0