diff options
| author | Mike McQuaid | 2014-12-27 16:08:44 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 16:31:46 +0000 |
| commit | 2138aee15f1a2755191eb2586eebcd33ca867e65 (patch) | |
| tree | 28bf16d5ab6228b285efd7c3c33d12ad05593c84 /Library | |
| parent | b5c42b1a37f3cc9195290bb904ff27d1a7bc0992 (diff) | |
| download | homebrew-2138aee15f1a2755191eb2586eebcd33ca867e65.tar.bz2 | |
jemalloc: fix some strict audit failures.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jemalloc.rb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Formula/jemalloc.rb b/Library/Formula/jemalloc.rb index d29c49951..1b7c8ec43 100644 --- a/Library/Formula/jemalloc.rb +++ b/Library/Formula/jemalloc.rb @@ -1,9 +1,7 @@ -require 'formula' - class Jemalloc < Formula - homepage 'http://www.canonware.com/jemalloc/download.html' - url 'http://www.canonware.com/download/jemalloc/jemalloc-3.6.0.tar.bz2' - sha1 '40c0892b172e5dc14a6cea6fe4edda7dea4f3a68' + homepage "http://www.canonware.com/jemalloc/download.html" + url "http://www.canonware.com/download/jemalloc/jemalloc-3.6.0.tar.bz2" + sha1 "40c0892b172e5dc14a6cea6fe4edda7dea4f3a68" head "https://github.com/jemalloc/jemalloc.git" bottle do @@ -15,8 +13,8 @@ class Jemalloc < Formula end 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" |
