aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSamuel John2013-08-12 18:51:57 +0200
committerSamuel John2013-08-12 18:51:57 +0200
commit8becc75083b9b50b4b37d692c054d79fc8186de1 (patch)
tree9482ffc4fd0b74a843353db2c34e1139803fb248 /Library/Formula
parentaaf918ee823e9acfbf4bc5eda8337b76b9010a36 (diff)
downloadhomebrew-8becc75083b9b50b4b37d692c054d79fc8186de1.tar.bz2
neko: Fix path for libneko.dylib
`@executable_path` in the binaries was incorrect. so moving to lib/neko/libneko.dylib fixes this.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/neko.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/neko.rb b/Library/Formula/neko.rb
index 99030b2be..ec51925e4 100644
--- a/Library/Formula/neko.rb
+++ b/Library/Formula/neko.rb
@@ -15,7 +15,7 @@ class Neko < Formula
ENV.deparallelize
system "make", "os=osx", "LIB_PREFIX=#{HOMEBREW_PREFIX}", "INSTALL_FLAGS="
- lib.install 'bin/libneko.dylib'
+ (lib/'neko').install 'bin/libneko.dylib'
include.install Dir['vm/neko*.h']
neko = lib/'neko'
neko.install Dir['bin/*']