diff options
| author | Adam Vandenberg | 2014-04-27 16:03:27 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-04-27 16:03:27 -0700 | 
| commit | 38487db41a34eaab06172b1c5e133c60563f6ffd (patch) | |
| tree | 8a89a4290d664e5e979909ee6457f8f7b6ff28da | |
| parent | 5e2b0136dcb9d26cc70c55ef395eae097d5d0757 (diff) | |
| download | homebrew-38487db41a34eaab06172b1c5e133c60563f6ffd.tar.bz2 | |
cowpatty: makefile is not parallel-safe
Closes #28769.
| -rw-r--r-- | Library/Formula/cowpatty.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/Library/Formula/cowpatty.rb b/Library/Formula/cowpatty.rb index 7dbb8ff58..d680d55be 100644 --- a/Library/Formula/cowpatty.rb +++ b/Library/Formula/cowpatty.rb @@ -6,6 +6,7 @@ class Cowpatty < Formula    sha1 '8b7cb2015d0534031827f2f06135bf5cf5929d35'    def install +    ENV.j1      inreplace "Makefile", "/usr/local/", "#{prefix}/"      system "make install"    end | 
