aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/findutils.rb
diff options
context:
space:
mode:
authorMike McQuaid2012-01-24 21:22:13 +0000
committerMike McQuaid2012-01-24 21:22:13 +0000
commit6f7920043084c5e172e34492d981a7b132b866f3 (patch)
tree6dc9e0eaae298e1b781dec4dfd18040591a8070c /Library/Formula/findutils.rb
parentd8a552c8d06e3878232500e58b6cf2e370844af0 (diff)
downloadhomebrew-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.rb10
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