Skip to content

Commit

Permalink
Force LANG='en_US.UTF-8' when generating Makefile to avoid encoding i…
Browse files Browse the repository at this point in the history
…ssues.
  • Loading branch information
halogenandtoast committed Mar 2, 2012
1 parent c15cd3a commit 1a28da8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/capybara_webkit_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ def os_spec
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
Expand Down

0 comments on commit 1a28da8

Please sign in to comment.