diff options
| author | Adam Vandenberg | 2013-11-09 22:20:45 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-11-09 22:21:14 -0800 | 
| commit | 5965cd4c0d3641572bad8600440b157e36e4652f (patch) | |
| tree | d5084713de977032ea8ec625c7afced3753a0c05 | |
| parent | fb700c1b055ad14810b32061de96e1bc03b8249d (diff) | |
| download | homebrew-5965cd4c0d3641572bad8600440b157e36e4652f.tar.bz2 | |
coreutils/idutils conflict
| -rw-r--r-- | Library/Formula/coreutils.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/idutils.rb | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/Library/Formula/coreutils.rb b/Library/Formula/coreutils.rb index 8fc1a06ac..4d001469d 100644 --- a/Library/Formula/coreutils.rb +++ b/Library/Formula/coreutils.rb @@ -6,6 +6,8 @@ class Coreutils < Formula    mirror 'http://ftp.gnu.org/gnu/coreutils/coreutils-8.21.tar.xz'    sha256 'adaa44bdab3fa5eb352e80d8a31fdbf957b78653d0c2cd30d63e161444288e18' +  conflicts_with 'idutils', :because => 'both install `gid` and `gid.1`' +    depends_on 'xz' => :build    def install diff --git a/Library/Formula/idutils.rb b/Library/Formula/idutils.rb index 4e2f7b5c5..cb3ee1f27 100644 --- a/Library/Formula/idutils.rb +++ b/Library/Formula/idutils.rb @@ -6,6 +6,8 @@ class Idutils < Formula    mirror 'http://ftp.gnu.org/gnu/idutils/idutils-4.6.tar.xz'    sha256 '8181f43a4fb62f6f0ccf3b84dbe9bec71ecabd6dfdcf49c6b5584521c888aac2' +  conflicts_with 'coreutils', :because => 'both install `gid` and `gid.1`' +    depends_on 'xz' => :build    def install | 
