aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2013-10-10 10:34:01 -0700
committerMisty De Meo2013-10-10 10:34:18 -0700
commit883aca0977b3f39294d3c7f42a31eab9a42e6d73 (patch)
treec680f37db27bc785da92715c208843098de3e27b /Library
parent4149b8b7b1bd4f53fa1205fe3d258e1cdb699f9b (diff)
downloadhomebrew-883aca0977b3f39294d3c7f42a31eab9a42e6d73.tar.bz2
mp3check: install to correct prefix
Fixes #23183.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mp3check.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/mp3check.rb b/Library/Formula/mp3check.rb
index 5cee2e014..b43572d83 100644
--- a/Library/Formula/mp3check.rb
+++ b/Library/Formula/mp3check.rb
@@ -7,8 +7,9 @@ class Mp3check < Formula
def install
ENV.deparallelize
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
+ # The makefile's install target is kinda iffy, but there's
+ # only one file to install so it's easier to do it ourselves
+ system "make"
+ bin.install 'mp3check'
end
end