Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 7a7b025

Browse files
committed
Merge pull request #149 from mauriciopasquier/fix-compiling-with-non-english-locales
Force compilers to use english
2 parents 5c7fafc + e89729c commit 7a7b025

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/libv8/compiler/generic_compiler.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def compatible?
3131
end
3232

3333
def call(*arguments)
34-
Open3.capture3 arguments.unshift(@path).join(' ')
34+
Open3.capture3 arguments.unshift('LC_ALL=en', @path).join(' ')
3535
end
3636
end
3737
end

0 commit comments

Comments
 (0)