[haiku-commits] r35420 - haiku/trunk/data/bin

  • From: fredrik.holmqvist@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 6 Feb 2010 16:46:08 +0100 (CET)

Author: tqh
Date: 2010-02-06 16:46:08 +0100 (Sat, 06 Feb 2010)
New Revision: 35420
Changeset: http://dev.haiku-os.org/changeset/35420/haiku
Ticket: http://dev.haiku-os.org/ticket/5373

Modified:
   haiku/trunk/data/bin/installoptionalpackage
Log:
Patch by mmadia "In function AddSymlinkToHaikuImage(),  mkdir -p "${dirTokens}" 
 needs the '$' escaped.". This fixes #5373.


Modified: haiku/trunk/data/bin/installoptionalpackage
===================================================================
--- haiku/trunk/data/bin/installoptionalpackage 2010-02-06 15:41:37 UTC (rev 
35419)
+++ haiku/trunk/data/bin/installoptionalpackage 2010-02-06 15:46:08 UTC (rev 
35420)
@@ -171,7 +171,7 @@
        TrimLeadingSpace linkName
        TrimEndingSpace linkName
        
-       mkdir -p "${dirTokens}"
+       mkdir -p "\${dirTokens}"
        
        if [ "\${linkName}" == '' ] ; then
                ln -sf "\${linkTarget}" -t "\${dirTokens}"


Other related posts:

  • » [haiku-commits] r35420 - haiku/trunk/data/bin - fredrik . holmqvist