diff --git a/Formula/jemalloc.rb b/Formula/jemalloc.rb index 97043c1aa4..84a8d22122 100644 --- a/Formula/jemalloc.rb +++ b/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