diff options
| author | Mike McQuaid | 2014-02-06 09:30:55 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-06 09:30:55 +0000 |
| commit | ad1a4ad37a8f0d6ed00d3c79170681bf52af87e0 (patch) | |
| tree | ae47d26ad45c3835b151207e9ee2db2cb5df8811 /Library/Formula/gnuplot.rb | |
| parent | 28c218c4db9ff6f909046d54762447691e07ebb2 (diff) | |
| download | homebrew-ad1a4ad37a8f0d6ed00d3c79170681bf52af87e0.tar.bz2 | |
gnuplot: fix aquaterm args.
References #25121.
Diffstat (limited to 'Library/Formula/gnuplot.rb')
| -rw-r--r-- | Library/Formula/gnuplot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/gnuplot.rb b/Library/Formula/gnuplot.rb index 934a42224..076d19f8e 100644 --- a/Library/Formula/gnuplot.rb +++ b/Library/Formula/gnuplot.rb @@ -82,7 +82,7 @@ class Gnuplot < Formula args << '--enable-qt' if build.include? 'qt' args << '--without-lua' if build.include? 'nolua' args << '--without-lisp-files' if build.include? 'without-emacs' - args << build.with?('aquaterm') ? '--with-aquaterm' : '--without-aquaterm' + args << (build.with?('aquaterm') ? '--with-aquaterm' : '--without-aquaterm') if build.include? 'latex' args << '--with-latex' |
