diff options
| author | nibbles 2bits | 2012-10-25 12:17:49 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-27 07:30:42 -0700 |
| commit | 598d96373528fea12794214219498bbdcf5ed298 (patch) | |
| tree | 8a9c7bc5c76923ac6e8fd31be62c1ba051ddecba /Library/Formula/maxima.rb | |
| parent | eeca982cf283223dd987c3f5ead9548b19dc0135 (diff) | |
| download | homebrew-598d96373528fea12794214219498bbdcf5ed298.tar.bz2 | |
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 #15668.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/maxima.rb')
| -rw-r--r-- | Library/Formula/maxima.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/maxima.rb b/Library/Formula/maxima.rb index 119c5efb3..42840cc8e 100644 --- a/Library/Formula/maxima.rb +++ b/Library/Formula/maxima.rb @@ -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 |
