aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-02-10 09:18:41 +0000
committerMike McQuaid2014-02-10 09:19:07 +0000
commitae7800fb21e1c6891ddc4cceb02dc6b5a610ca12 (patch)
tree86ef36ae3441d3f091c740dd65658f3b52b281ed /Library
parent0deae7287f3d361becda6b114ca0aaefe26b7101 (diff)
downloadhomebrew-ae7800fb21e1c6891ddc4cceb02dc6b5a610ca12.tar.bz2
qt: use -dbus-linked when building with dbus.
This fixes the issue that Qt doesn't find the D-Bus libraries when Homebrew is installed in a non-standard prefix.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/qt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb
index abf63a684..931c9c2d3 100644
--- a/Library/Formula/qt.rb
+++ b/Library/Formula/qt.rb
@@ -15,7 +15,6 @@ class Qt < Formula
# It would be nice if this was a real version number but unfortunately
# that will mess with the bottles.
version '4.8.5'
-
end
head 'git://gitorious.org/qt/qt.git', :branch => '4.8'
@@ -72,6 +71,7 @@ class Qt < Formula
args << "-I#{dbus_opt}/include/dbus-1.0"
args << "-L#{dbus_opt}/lib"
args << "-ldbus-1"
+ args << "-dbus-linked"
end
if build.with? 'qt3support'