# HG changeset patch # User Claus Gittinger # Date 844879097 -7200 # Node ID c003915ba2b98c0446784f2cbec621e29ba64c93 # Parent f3348e85b53fdb28bbc75606521e74f338caa354 smalltalk is now a shell script diff -r f3348e85b53f -r c003915ba2b9 smalltalk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/smalltalk Wed Oct 09 18:38:17 1996 +0200 @@ -0,0 +1,16 @@ +#!/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 ... + +export LD_LIBRARY_PATH=. +stx $*