diff options
| author | Jack Nagel | 2013-08-19 14:47:23 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-08-19 14:48:08 -0500 | 
| commit | d6209c6856d0c60e3c16fd3eaed8f875606a9c0b (patch) | |
| tree | b08162c1b0ccdd68097a07672d9d5ec420c5c81a | |
| parent | eaeded4b2a6b64dd223a7af7f21a384c735ce9c5 (diff) | |
| download | homebrew-d6209c6856d0c60e3c16fd3eaed8f875606a9c0b.tar.bz2 | |
superbin -> Superenv.bin
Fixes #22000.
| -rw-r--r-- | Library/Formula/serf.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/subversion.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Formula/serf.rb b/Library/Formula/serf.rb index 2eea834a6..71b9767b6 100644 --- a/Library/Formula/serf.rb +++ b/Library/Formula/serf.rb @@ -11,7 +11,7 @@ class Serf < Formula    depends_on 'sqlite'    def apr_bin -    superbin or "/usr/bin" +    Superenv.bin or "/usr/bin"    end    def install diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index bdae0cc68..9d0fa0033 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -45,7 +45,7 @@ class Subversion < Formula    end if build.include? 'perl' or build.include? 'ruby'    def apr_bin -    superbin or "/usr/bin" +    Superenv.bin or "/usr/bin"    end    def install | 
