jemalloc: rename pprof as jemalloc-pprof

Closes Homebrew/homebrew#16109.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Stefan 2012-11-25 20:08:19 +01:00 committed by Adam Vandenberg
parent e6e6fa378b
commit 899ca91e05

View file

@ -6,7 +6,10 @@ class Jemalloc < Formula
sha1 'e5204872e74d3ee75eaa51c6dc39731d611883f3' sha1 'e5204872e74d3ee75eaa51c6dc39731d611883f3'
def install def install
system "./configure", "--disable-debug", "--prefix=#{prefix}" system './configure', '--disable-debug', "--prefix=#{prefix}"
system "make install" system 'make install'
# This otherwise conflicts with google-perftools
mv "#{bin}/pprof", "#{bin}/jemalloc-pprof"
end end
end end