maxima: add LANG=C during make

- Add `ENV['LANG'] = 'C'` per the build instrutions for OSX.
- Tested with superenv and the new wxmaxima formula

Closes Homebrew/homebrew#15668.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
nibbles 2bits 2012-10-25 12:17:49 -07:00 committed by Adam Vandenberg
parent f630e600d0
commit e03dac2474

View file

@ -20,11 +20,13 @@ class Maxima < Formula
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}", "--infodir=#{info}",
"--enable-sbcl", "--enable-gettext"
system "make"
system "make check"
system "make install"
"--enable-sbcl",
"--enable-gettext"
# Per build instructions
ENV['LANG'] = 'C'
system 'make'
system 'make check'
system 'make install'
end
def test