624ca24dc8
Open Object Rexx is a powerful object-oriented scripting language. The interpreter is almost fully compatible with the original Object Rexx by IBM. The port is derived from the generic Unix source code, with the idea to add BSD-specific enhancements over time and also to develop modules that would allow to run the most of OS/2 Object Rexx code on BSD platforms. WWW: http://www.oorexx.org/ PR: ports/86005 Submitted by: Micho Durdevich <micho@matem.unam.mx>
14 lines
374 B
Bash
14 lines
374 B
Bash
--- obj/rexximg.sh.orig Mon Sep 12 19:14:53 2005
|
|
+++ obj/rexximg.sh Mon Sep 12 19:19:11 2005
|
|
@@ -1,5 +1,11 @@
|
|
#!/bin/sh
|
|
|
|
+if [ -z "$LD_LIBRARY_PATH" ]; then
|
|
+ export LD_LIBRARY_PATH="."
|
|
+else
|
|
+ export LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"
|
|
+fi
|
|
+
|
|
# This shell script creates the initial OORexx image file
|
|
cp ../kernel/RexxClasses/*.orx .
|
|
cp ../kernel/bsd/*.orx .
|