diff options
| author | Jack Nagel | 2014-12-04 12:01:22 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-12-04 12:01:22 -0500 | 
| commit | 904c186b519f1fa64294e4ff632f21cff8a3d3cc (patch) | |
| tree | b04422c42e086eb751e3225bc14ad54c8362bb1d | |
| parent | a4b171eb653d22599ea3f167f2185236c81d505f (diff) | |
| download | homebrew-904c186b519f1fa64294e4ff632f21cff8a3d3cc.tar.bz2 | |
gnuplot: modernize autotools deps
| -rw-r--r-- | Library/Formula/gnuplot.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/gnuplot.rb b/Library/Formula/gnuplot.rb index 726ccd207..d1fae8fa7 100644 --- a/Library/Formula/gnuplot.rb +++ b/Library/Formula/gnuplot.rb @@ -21,9 +21,9 @@ class Gnuplot < Formula    head do      url 'cvs://:pserver:anonymous:@gnuplot.cvs.sourceforge.net:/cvsroot/gnuplot:gnuplot' -    depends_on :autoconf -    depends_on :automake -    depends_on :libtool +    depends_on "autoconf" => :build +    depends_on "automake" => :build +    depends_on "libtool" => :build    end    option 'pdf',    'Build the PDF terminal using pdflib-lite' | 
