Title: [231256] trunk/Tools
Revision
231256
Author
[email protected]
Date
2018-05-02 13:07:58 -0700 (Wed, 02 May 2018)

Log Message

[GTK] Generate a JSC bundle on the 64 and 32 bit release bots and upload it to webkitgtk.org (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=184699

Unreviewed follow-up fix after r231230.

* Scripts/generate-jsc-bundle:
(generate_wrapper_script): Quote the arguments passed to jsc.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (231255 => 231256)


--- trunk/Tools/ChangeLog	2018-05-02 19:53:38 UTC (rev 231255)
+++ trunk/Tools/ChangeLog	2018-05-02 20:07:58 UTC (rev 231256)
@@ -1,3 +1,13 @@
+2018-05-02  Carlos Alberto Lopez Perez  <[email protected]>
+
+        [GTK] Generate a JSC bundle on the 64 and 32 bit release bots and upload it to webkitgtk.org (follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=184699
+
+        Unreviewed follow-up fix after r231230.
+
+        * Scripts/generate-jsc-bundle:
+        (generate_wrapper_script): Quote the arguments passed to jsc.
+
 2018-05-02  Brian Burg  <[email protected]>
 
         Web Inspector: opt out of process swap on navigation if a Web Inspector frontend is connected

Modified: trunk/Tools/Scripts/generate-jsc-bundle (231255 => 231256)


--- trunk/Tools/Scripts/generate-jsc-bundle	2018-05-02 19:53:38 UTC (rev 231255)
+++ trunk/Tools/Scripts/generate-jsc-bundle	2018-05-02 20:07:58 UTC (rev 231256)
@@ -86,7 +86,7 @@
         scriptHandle.write('#!/bin/sh\n')
         scriptHandle.write('MYDIR="$(dirname $(readlink -f $0))"\n')
         scriptHandle.write('export LD_LIBRARY_PATH="${MYDIR}/lib"\n')
-        scriptHandle.write('exec "${MYDIR}/lib/%s" "${MYDIR}/bin/jsc" $@\n' % os.path.basename(interpreter))
+        scriptHandle.write('exec "${MYDIR}/lib/%s" "${MYDIR}/bin/jsc" "$@"\n' % os.path.basename(interpreter))
     os.chmod(scriptFile, 0755)
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to