summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-03-06 16:14:39 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-03-06 16:14:39 -0600
commit28638350377bd6e208c9299b2ebf27190665b947 (patch)
treeb14a452648db5e51e083482623e696e0f486d0ef
parent30a104067d53f6f21346dad378fe4fb90c790167 (diff)
downloadtdebase-28638350.tar.gz
tdebase-28638350.zip
Add missing quotation marks inadvertently deleted in previous patching.
-rw-r--r--starttde2
1 files changed, 1 insertions, 1 deletions
diff --git a/starttde b/starttde
index 8a66c7455..11db36dbe 100644
--- a/starttde
+++ b/starttde
@@ -66,7 +66,7 @@ unset DYLD_FORCE_FLAT_NAMESPACE
# Check whether prelinking is enabled. If so, exporting TDE_IS_PRELINKED improves
# loading TDE. The $TDE_IS_PRELINKED variable might already be set on some systems
# through /etc/profile.d, so first check whether the variable exists.
-if [ $TDE_IS_PRELINKED = "" ]; then
+if [ "$TDE_IS_PRELINKED" = "" ]; then
if [ -r /etc/default/prelink ]; then
. /etc/default/prelink
if [ "$PRELINKING" == "yes" ]; then