Changeset 139868 in webkit


Ignore:
Timestamp:
Jan 16, 2013 4:00:50 AM (11 years ago)
Author:
sergio@webkit.org
Message:

[GTK] build-webkit fails if the jhbuild wrapper is not used
https://bugs.webkit.org/show_bug.cgi?id=106769

Reviewed by Martin Robinson.

Return an empty array instead of "" in
jhbuildWrapperPrefixIfNeeded() because otherwise that empty string
will not be recognized as a valid command when the returned array
is directly passed to perl's system() call.

  • Scripts/webkitdirs.pm:

(jhbuildWrapperPrefixIfNeeded):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139850 r139868  
     12013-01-16  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        [GTK] build-webkit fails if the jhbuild wrapper is not used
     4        https://bugs.webkit.org/show_bug.cgi?id=106769
     5
     6        Reviewed by Martin Robinson.
     7
     8        Return an empty array instead of "" in
     9        jhbuildWrapperPrefixIfNeeded() because otherwise that empty string
     10        will not be recognized as a valid command when the returned array
     11        is directly passed to perl's system() call.
     12
     13        * Scripts/webkitdirs.pm:
     14        (jhbuildWrapperPrefixIfNeeded):
     15
    1162013-01-16  Jochen Eisinger  <jochen@chromium.org>
    217
  • trunk/Tools/Scripts/webkitdirs.pm

    r139769 r139868  
    21312131    }
    21322132
    2133     return "";
     2133    return ();
    21342134}
    21352135
Note: See TracChangeset for help on using the changeset viewer.