smalltalk
author Claus Gittinger <cg@exept.de>
Thu, 10 Oct 1996 14:59:45 +0200
changeset 157 c6a5496ad063
parent 155 c42953f0172d
child 159 9d05aaafcca4
permissions -rwxr-xr-x
*** empty log message ***

#!/bin/sh

# $Header$
#
#
# startup script for smalltalk
# actually, simply calls stx, passing all arguments.
#

# In previous versions, smalltalk used to be the executable itself.
# This lead to problems on systems, where things like LD_LIBRARY_PATH
# should be set in advance. 
# Now, here is a place to do such things ...

if [ -d /usr/openwin/lib ]
then
    LD_LIBRARY_PATH=.:/usr/openwin/lib
else
    LD_LIBRARY_PATH=.
fi
export LD_LIBRARY_PATH
stx $*