Skip to content

Commit

Permalink
REGRESSION(267532@main): Cannot import bigint.pm even when installed
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=261150

Unreviewed build fix.

This solution is suggested by Dan Horak (thanks!).

* Source/JavaScriptCore/create_hash_table:
* Source/WebCore/bindings/scripts/Hasher.pm:

Canonical link: https://commits.webkit.org/267629@main
  • Loading branch information
mcatanzaro committed Sep 5, 2023
1 parent e57e1d0 commit ac567dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/JavaScriptCore/create_hash_table
Expand Up @@ -24,7 +24,7 @@

use strict;
use warnings;
use bigint;
use Math::BigInt;
use Getopt::Long qw(:config pass_through);

my $file = shift @ARGV or die("Must provide source file as final argument.");
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/bindings/scripts/Hasher.pm
Expand Up @@ -27,7 +27,7 @@
package Hasher;

use strict;
use bigint;
use Math::BigInt;

my $mask64 = 2**64 - 1;
my $mask32 = 2**32 - 1;
Expand Down

0 comments on commit ac567dd

Please sign in to comment.