diff options
| author | Adam Vandenberg | 2011-02-12 08:49:20 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-02-12 08:50:48 -0800 |
| commit | 37e1c521bcc260507084a08d2bc32aa7daea9fc9 (patch) | |
| tree | d2ac01e86efeb796cb6eb13de7d3ec57046ba05b | |
| parent | a2b5537f105af0047c0f45eb4b4f540972681979 (diff) | |
| download | homebrew-37e1c521bcc260507084a08d2bc32aa7daea9fc9.tar.bz2 | |
wine - fix audit warning
| -rw-r--r-- | Library/Formula/wine.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index 4b91144a5..ad3b34f93 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -21,7 +21,7 @@ class Wine <Formula # to be searched by dyld. def wine_wrapper; <<-EOS #!/bin/sh -DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:#{HOMEBREW_PREFIX+'lib'}" "#{bin}/wine.bin" "$@" +DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:#{HOMEBREW_PREFIX}/lib" "#{bin}/wine.bin" "$@" EOS end @@ -45,8 +45,8 @@ EOS "--with-opengl"] args << "--disable-win16" if MACOS_VERSION < 10.6 - args << "--without-mpg123" if Hardware.is_64_bit? # 64-bit builds of mpg123 are incompatible with 32-bit builds of Wine + args << "--without-mpg123" if Hardware.is_64_bit? system "./configure", *args system "make install" |
