Changeset 64654 in webkit


Ignore:
Timestamp:
Aug 4, 2010 10:12:43 AM (14 years ago)
Author:
aa@chromium.org
Message:

2010-08-04 Aaron Boodman <aa@chromium.org>

Reviewed by Eric Seidel.

prepare-ChangeLog fails mysteriously if curl doesn't support ssl
https://bugs.webkit.org/show_bug.cgi?id=43460

  • Scripts/prepare-ChangeLog:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64643 r64654  
     12010-08-04  Aaron Boodman  <aa@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        prepare-ChangeLog fails mysteriously if curl doesn't support ssl
     6        https://bugs.webkit.org/show_bug.cgi?id=43460
     7
     8        * Scripts/prepare-ChangeLog:
     9
    1102010-08-03  MORITA Hajime  <morrita@google.com>
    211
  • trunk/WebKitTools/Scripts/prepare-ChangeLog

    r58327 r64654  
    265265    my $descriptionLine = `curl --insecure --silent "$bugXMLURL" | grep short_desc`;
    266266    if ($descriptionLine !~ /<short_desc>(.*)<\/short_desc>/) {
    267         print STDERR "  Bug $bugNumber has no bug description. Maybe you set wrong bug ID?\n";
    268         print STDERR "  The bug URL: $bugXMLURL\n";
     267        # Maybe the reason the above did not work is because the curl that is installed doesn't
     268        # support ssl at all.
     269        if (`curl --version | grep ^Protocols` !~ /\bhttps\b/) {
     270            print STDERR "  Could not get description for bug $bugNumber.\n";
     271            print STDERR "  It looks like your version of curl does not support ssl.\n";
     272            print STDERR "  If you are using macports, this can be fixed with sudo port install curl+ssl.\n";
     273        } else {
     274            print STDERR "  Bug $bugNumber has no bug description. Maybe you set wrong bug ID?\n";
     275            print STDERR "  The bug URL: $bugXMLURL\n";
     276        }
    269277        exit 1;
    270278    }
Note: See TracChangeset for help on using the changeset viewer.