diff options
| author | Samuel John | 2013-08-12 18:51:57 +0200 |
|---|---|---|
| committer | Samuel John | 2013-08-12 18:51:57 +0200 |
| commit | 8becc75083b9b50b4b37d692c054d79fc8186de1 (patch) | |
| tree | 9482ffc4fd0b74a843353db2c34e1139803fb248 /Library/Formula | |
| parent | aaf918ee823e9acfbf4bc5eda8337b76b9010a36 (diff) | |
| download | homebrew-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.rb | 2 |
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/*'] |
