diff options
| author | David Larson | 2015-01-08 16:39:00 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2015-01-09 08:20:52 +0000 |
| commit | c7a16192982525e5accbd3dfa3016841deb1ac58 (patch) | |
| tree | 1febd0b07310baf72462d6d61a4da54ad1a94f4c /Library/Formula | |
| parent | a9ea56bd6853bc04669217faea0acc39edc18f54 (diff) | |
| download | homebrew-c7a16192982525e5accbd3dfa3016841deb1ac58.tar.bz2 | |
the_silver_searcher: fix strict audit failures
Closes #35680.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/the_silver_searcher.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/the_silver_searcher.rb b/Library/Formula/the_silver_searcher.rb index c8bb7c047..a602529e4 100644 --- a/Library/Formula/the_silver_searcher.rb +++ b/Library/Formula/the_silver_searcher.rb @@ -30,15 +30,15 @@ class TheSilverSearcher < Formula def install # Stable tarball does not include pre-generated configure script - system "aclocal -I #{HOMEBREW_PREFIX}/share/aclocal" + system "aclocal", "-I #{HOMEBREW_PREFIX}/share/aclocal" system "autoconf" system "autoheader" - system "automake --add-missing" + system "automake", "--add-missing" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make" - system "make install" + system "make", "install" bash_completion.install "ag.bashcomp.sh" end |
