diff options
| author | Mike McQuaid | 2012-01-24 21:22:13 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2012-01-24 21:22:13 +0000 | 
| commit | 6f7920043084c5e172e34492d981a7b132b866f3 (patch) | |
| tree | 6dc9e0eaae298e1b781dec4dfd18040591a8070c /Library/Formula/findutils.rb | |
| parent | d8a552c8d06e3878232500e58b6cf2e370844af0 (diff) | |
| download | homebrew-6f7920043084c5e172e34492d981a7b132b866f3.tar.bz2 | |
Remove the GNU formulae --default-names options.
Provoked by #9574.
Diffstat (limited to 'Library/Formula/findutils.rb')
| -rw-r--r-- | Library/Formula/findutils.rb | 10 | 
1 files changed, 2 insertions, 8 deletions
| diff --git a/Library/Formula/findutils.rb b/Library/Formula/findutils.rb index 525e0ab25..79ae74afc 100644 --- a/Library/Formula/findutils.rb +++ b/Library/Formula/findutils.rb @@ -6,15 +6,9 @@ class Findutils < Formula    homepage 'http://www.gnu.org/software/findutils/'    md5 '351cc4adb07d54877fa15f75fb77d39f' -  def options -    [['--default-names', "Do NOT prepend 'g' to the binary; will override system utils."]] -  end -    def install -    args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"] -    args << "--program-prefix=g" unless ARGV.include? '--default-names' - -    system "./configure", *args +    system "./configure", "--prefix=#{prefix}", "--program-prefix=g", +                          "--disable-dependency-tracking", "--disable-debug"      system "make install"    end  end | 
