smalltalk is now a shell script
authorClaus Gittinger <cg@exept.de>
Wed, 09 Oct 1996 18:38:17 +0200
changeset 151 c003915ba2b9
parent 150 f3348e85b53f
child 152 956f80caf731
smalltalk is now a shell script
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 $*