[Vm-dev] [commit] r2513 - Fix snafu in squeak scripts

commits at squeakvm.org commits at squeakvm.org
Tue Nov 15 00:39:49 UTC 2011


Author: eliot
Date: 2011-11-14 16:39:49 -0800 (Mon, 14 Nov 2011)
New Revision: 2513

Modified:
   branches/Cog/platforms/unix/config/bin.squeak.sh.in
   branches/Cog/platforms/unix/config/squeak.sh.in
Log:
Fix snafu in squeak scripts
    LD_LIBRARY_PATH=$PLUGINS$:{LD_LIBRARY_PATH:-/lib:/usr/lib} exec ...
 => LD_LIBRARY_PATH=$PLUGINS:${LD_LIBRARY_PATH:-/lib:/usr/lib} exec ...


Modified: branches/Cog/platforms/unix/config/bin.squeak.sh.in
===================================================================
--- branches/Cog/platforms/unix/config/bin.squeak.sh.in	2011-11-14 18:04:59 UTC (rev 2512)
+++ branches/Cog/platforms/unix/config/bin.squeak.sh.in	2011-11-15 00:39:49 UTC (rev 2513)
@@ -13,4 +13,4 @@
 # prepending is less flexible but safer because it ensures we find the plugins
 # in the same directory as the VM.  We must include at least /lib and /usr/lib
 # if libraries there-in are to be found.  These directories are not implicit.
-LD_LIBRARY_PATH=$PLUGINS$:{LD_LIBRARY_PATH:-/lib:/usr/lib} exec "$BIN/squeak" "$@"
+LD_LIBRARY_PATH=$PLUGINS:${LD_LIBRARY_PATH:-/lib:/usr/lib} exec "$BIN/squeak" "$@"

Modified: branches/Cog/platforms/unix/config/squeak.sh.in
===================================================================
--- branches/Cog/platforms/unix/config/squeak.sh.in	2011-11-14 18:04:59 UTC (rev 2512)
+++ branches/Cog/platforms/unix/config/squeak.sh.in	2011-11-15 00:39:49 UTC (rev 2513)
@@ -13,4 +13,4 @@
 # prepending is less flexible but safer because it ensures we find the plugins
 # in the same directory as the VM.  We must include at least /lib and /usr/lib
 # if libraries there-in are to be found.  These directories are not implicit.
-LD_LIBRARY_PATH=$PLUGINS$:{LD_LIBRARY_PATH:-/lib:/usr/lib} exec "$BIN/squeak" "$@"
+LD_LIBRARY_PATH=$PLUGINS:${LD_LIBRARY_PATH:-/lib:/usr/lib} exec "$BIN/squeak" "$@"



More information about the Vm-dev mailing list