[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: octave : install fails
From: |
Kaj Wiik |
Subject: |
Re: octave : install fails |
Date: |
Tue, 2 May 1995 17:50:31 +0300 (EET DST) |
Johan,
Installation script makes (or should make) a wrapper shell script
"octave" which sets the octave path and calls octave.bin. I have:
#!/bin/sh
#
# Wrapper for octave for binary installations that can't install
# octave in /usr/local/bin.
#
# The real binary should be installed in as octave.bin, and this file
# should be installed in the same directory as octave.
OCTAVE_HOME=/u2/p/octave
export OCTAVE_HOME
exec $OCTAVE_HOME/bin/octave.bin $*
----------------------------------------------------------------------
So, I'd suggest that you look what's the path inside octave-script.
Kaj
address@hidden