diff options
| author | Stefan | 2012-11-25 20:08:19 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-12-14 22:24:01 -0800 |
| commit | b3fae004582dbd6a6adde1304c6d750669131b66 (patch) | |
| tree | c7ae6f9b6b067c639474180ecd5931138f6fe0c6 /Library | |
| parent | dbe847e4effe102b88ac86965af1159e7d41ab7d (diff) | |
| download | homebrew-b3fae004582dbd6a6adde1304c6d750669131b66.tar.bz2 | |
jemalloc: rename pprof as jemalloc-pprof
Closes #16109.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jemalloc.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/jemalloc.rb b/Library/Formula/jemalloc.rb index 97043c1aa..84a8d2212 100644 --- a/Library/Formula/jemalloc.rb +++ b/Library/Formula/jemalloc.rb @@ -6,7 +6,10 @@ class Jemalloc < Formula sha1 'e5204872e74d3ee75eaa51c6dc39731d611883f3' def install - system "./configure", "--disable-debug", "--prefix=#{prefix}" - system "make install" + system './configure', '--disable-debug', "--prefix=#{prefix}" + system 'make install' + + # This otherwise conflicts with google-perftools + mv "#{bin}/pprof", "#{bin}/jemalloc-pprof" end end |
