view octave-sh @ 12683:486c9aea34d3 stable

doc: Correctly refer to toupper() as a Mapping Function. * mappers.cc (toupper): Change "Built-in Function" to "Mapping Function"
author Rik <octave@nomad.inbox5.com>
date Tue, 17 May 2011 22:31:05 -0700
parents e7e72101b86c
children
line wrap: on
line source

#!/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.

if test -n "$LD_LIBRARY_PATH"; then
  LD_LIBRARY_PATH="@LD_LIBRARY_PATH@:$LD_LIBRARY_PATH"
else
  LD_LIBRARY_PATH="@LD_LIBRARY_PATH@"
fi
export LD_LIBRARY_PATH

OCTAVE_HOME=@OCTAVE_HOME@
export OCTAVE_HOME

exec $OCTAVE_HOME/bin/octave.bin $*