Changeset 63670 in webkit


Ignore:
Timestamp:
Jul 19, 2010 9:39:57 AM (14 years ago)
Author:
tony@chromium.org
Message:

2010-07-19 Tony Chang <tony@chromium.org>

Reviewed by David Levin.

fix chromium linux compile on ubuntu maverick
https://bugs.webkit.org/show_bug.cgi?id=42528

  • Scripts/webkitdirs.pm: add a chomp to eat a newline that breaks the make command line
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r63668 r63670  
     12010-07-19  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        fix chromium linux compile on ubuntu maverick
     6        https://bugs.webkit.org/show_bug.cgi?id=42528
     7
     8        * Scripts/webkitdirs.pm: add a chomp to eat a newline that breaks the make command line
     9
    1102010-07-19  Adam Roben  <aroben@apple.com>
    211
  • trunk/WebKitTools/Scripts/webkitdirs.pm

    r63463 r63670  
    238238        # First try the nproc utility, if it exists. If we get no
    239239        # results fall back to just interpretting /proc directly.
    240         $numberOfCPUs = `nproc 2> /dev/null`;
     240        chomp($numberOfCPUs = `nproc 2> /dev/null`);
    241241        if ($numberOfCPUs eq "") {
    242242            $numberOfCPUs = (grep /processor/, `cat /proc/cpuinfo`);
Note: See TracChangeset for help on using the changeset viewer.