Default to using 'g' program prefix.
OSX already has findutils so we don't want to shadow them by default.
This commit is contained in:
parent
4660959a6e
commit
b93c806a85
1 changed files with 8 additions and 1 deletions
|
@ -5,8 +5,15 @@ 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
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
args = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"]
|
||||
args << "--program-prefix=g" unless ARGV.include? '--default-names'
|
||||
|
||||
system "./configure", *args
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue