[or-cvs] r20381: {} Add a very simple shell script that performs the same job as (torbrowser/trunk/src/RelativeLink)

ioerror at seul.org ioerror at seul.org
Wed Aug 26 22:33:28 UTC 2009


Author: ioerror
Date: 2009-08-26 18:33:28 -0400 (Wed, 26 Aug 2009)
New Revision: 20381

Added:
   torbrowser/trunk/src/RelativeLink/RelativeLink.sh
Log:
Add a very simple shell script that performs the same job as RelativeLink.c on Gnu/Linux systems.


Added: torbrowser/trunk/src/RelativeLink/RelativeLink.sh
===================================================================
--- torbrowser/trunk/src/RelativeLink/RelativeLink.sh	                        (rev 0)
+++ torbrowser/trunk/src/RelativeLink/RelativeLink.sh	2009-08-26 22:33:28 UTC (rev 20381)
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# Gnu/Linux does not really require something like RelativeLink.c
+# However, we do want to have the same look and feel with similiar features.
+# In the future, we may want this to be a C binary with a custom icon but at the moment
+# it's quite simple to just use a shell script
+#
+
+echo "Attemping to properly configure HOME..."
+export HOME=$PWD
+echo $HOME
+export LDPATH=$HOME/lib/
+echo "Attemping to properly configure LDPATH..."
+echo $LDPATH
+export LD_LIBRARY_PATH=$HOME/lib/
+echo "Attemping to properly configure LD_LIBRARY_PATH..."
+echo $LD_LIBRARY_PATH
+export DYLD_PRINT_LIBRARIES=1
+echo "Attemping to properly configure DYLD_PRINT_LIBRARIES..."
+echo $DYLD_PRINT_LIBRARIES
+# You may want to try this for debugging:
+# exec $HOME/bin/vidalia --loglevel debug --logfile vidalia-log \
+# --datadir .config/
+echo "Now attempting to launch the TBB for Linux..."
+exec $HOME/bin/vidalia --datadir .config/
+echo "Everything should be gone!"


Property changes on: torbrowser/trunk/src/RelativeLink/RelativeLink.sh
___________________________________________________________________
Added: svn:executable
   + *



More information about the tor-commits mailing list