aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-02-12 08:49:20 -0800
committerAdam Vandenberg2011-02-12 08:50:48 -0800
commit37e1c521bcc260507084a08d2bc32aa7daea9fc9 (patch)
treed2ac01e86efeb796cb6eb13de7d3ec57046ba05b /Library
parenta2b5537f105af0047c0f45eb4b4f540972681979 (diff)
downloadhomebrew-37e1c521bcc260507084a08d2bc32aa7daea9fc9.tar.bz2
wine - fix audit warning
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/wine.rb4
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"