From patchwork Sat Apr 14 16:47:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: bugzilla@busybox.net X-Patchwork-Id: 152522 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id B5A01B7001 for ; Sun, 15 Apr 2012 02:47:15 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6E9AF22B3A; Sat, 14 Apr 2012 16:47:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1GZdatwF8rL8; Sat, 14 Apr 2012 16:47:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7ABA6251BC; Sat, 14 Apr 2012 16:47:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id EBE268F75B for ; Sat, 14 Apr 2012 16:47:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id E2FAF251BC for ; Sat, 14 Apr 2012 16:47:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8H6qjvT9UoIA for ; Sat, 14 Apr 2012 16:47:09 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by silver.osuosl.org (Postfix) with ESMTP id D945522B3A for ; Sat, 14 Apr 2012 16:47:09 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 81) id CE69596ABD; Sat, 14 Apr 2012 16:47:09 +0000 (UTC) From: bugzilla@busybox.net To: buildroot@uclibc.org X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: buildroot X-Bugzilla-Component: Other X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: thomas.petazzoni@free-electrons.com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P5 X-Bugzilla-Assigned-To: unassigned@buildroot.uclibc.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: In-Reply-To: References: X-Bugzilla-URL: https://bugs.busybox.net/ Auto-Submitted: auto-generated MIME-Version: 1.0 Message-Id: <20120414164709.CE69596ABD@busybox.osuosl.org> Date: Sat, 14 Apr 2012 16:47:09 +0000 (UTC) Subject: [Buildroot] [Bug 5102] qt package moc, uic, rcc read from wrong place X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net https://bugs.busybox.net/show_bug.cgi?id=5102 --- Comment #1 from Thomas Petazzoni 2012-04-14 16:47:09 UTC --- That seems strange, because there were only two commits relative to the Qt package between 2011.11 and 2012.12 and none of them could have affected the location of moc, uic, rcc, etc. Can you please post the Buildroot configuration you're using, and the build errors you have (full build log would be nice) ? The following two commits that took place are: commit 1e39b8a6ff5ba330688bc1a60d1e509d716b6900 Author: Frederik Pasch Date: Thu Feb 9 21:20:12 2012 +0100 qt: needs host-pkg-config Closes #4760 Signed-off-by: Peter Korsgaard diff --git a/package/qt/qt.mk b/package/qt/qt.mk index 28a477a..34f05f9 100644 --- a/package/qt/qt.mk +++ b/package/qt/qt.mk @@ -15,7 +15,7 @@ QT_VERSION = 4.7.4 QT_SOURCE = qt-everywhere-opensource-src-$(QT_VERSION).tar.gz QT_SITE = http://get.qt.nokia.com/qt/source - +QT_DEPENDENCIES = host-pkg-config QT_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_QT_LICENSE_APPROVED),y) commit d018125508c1d13f69b71702384c00c7095986a1 Author: Arnout Vandecappelle (Essensium/Mind) Date: Fri Jan 27 00:41:30 2012 +0100 qt: qt-dbus: replace dependency on dbus by select Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard diff --git a/package/qt/Config.in b/package/qt/Config.in index ab231d9..3a552d0 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -280,12 +280,9 @@ config BR2_PACKAGE_QT_PHONON_BACKEND If unsure, say n. endif -comment "Qt Dbus module not available (needs dbus)" - depends on !BR2_PACKAGE_DBUS - config BR2_PACKAGE_QT_DBUS bool "DBus Module" - depends on BR2_PACKAGE_DBUS + select BR2_PACKAGE_DBUS help Build the Qt DBus module.