From dc0d04522fa6ca7222124f390f51eb9e106906f7 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Fri, 21 Feb 2014 22:43:30 +0800 Subject: [PATCH] package: homebrew should install libraries in 'lib/', but not 'lib64/' --- packages/homebrew/capstone.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/homebrew/capstone.rb b/packages/homebrew/capstone.rb index 3f28e479e..bcebbb254 100644 --- a/packages/homebrew/capstone.rb +++ b/packages/homebrew/capstone.rb @@ -6,6 +6,7 @@ class Capstone < Formula sha1 '209cdc69518f754c5d7d07672d8e28cdda9feae7' def install + inreplace 'Makefile', 'lib64', 'lib' system "./make.sh" ENV["PREFIX"] = prefix system "./make.sh", "install"