[prev in list] [next in list] [prev in thread] [next in thread] 

List:       squeak-vm-dev
Subject:    [Vm-dev] [commit] r2513 - Fix snafu in squeak scripts
From:       commits () squeakvm ! org
Date:       2011-11-15 0:39:49
Message-ID: E1RQ741-0007Qb-VV () vps2 ! piumarta ! com
[Download RAW message or body]

 
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" "$@"

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic