1
0
Fork 0
mirror of https://github.com/thoughtbot/capybara-webkit synced 2023-03-27 23:22:28 -04:00

Force LANG='en_US.UTF-8' when generating Makefile to avoid encoding issues.

This commit is contained in:
Matthew Mongeau 2012-03-02 11:52:01 -05:00
parent c15cd3a61e
commit 1a28da89ad

View file

@ -28,11 +28,11 @@ module CapybaraWebkitBuilder
end
def makefile
system("#{qmake_bin} -spec #{spec}")
system("LANG='en_US.UTF-8' #{qmake_bin} -spec #{spec}")
end
def qmake
system("#{make_bin} qmake")
system("LANG='en_US.UTF-8' #{make_bin} qmake")
end
def build