From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6ABD31382C5 for ; Sun, 21 Jan 2018 12:28:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C12A7E0871; Sun, 21 Jan 2018 12:28:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C74AE0871 for ; Sun, 21 Jan 2018 12:28:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18E5C335C8F for ; Sun, 21 Jan 2018 12:28:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E1091C8 for ; Sun, 21 Jan 2018 12:28:34 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1516537156.6f2e70e0669c72af1e13f31b5859a71aee31a4e8.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mkvtoolnix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mkvtoolnix/mkvtoolnix-9999.ebuild X-VCS-Directories: media-video/mkvtoolnix/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 6f2e70e0669c72af1e13f31b5859a71aee31a4e8 X-VCS-Branch: master Date: Sun, 21 Jan 2018 12:28:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 82da30f2-01a3-4d3f-a840-f62aaa46c80d X-Archives-Hash: b06ef5ba899202d0f5f04dd0c7996067 commit: 6f2e70e0669c72af1e13f31b5859a71aee31a4e8 Author: Francesco Turco fastmail fm> AuthorDate: Fri Jan 5 12:57:58 2018 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sun Jan 21 12:19:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f2e70e0 media-video/mkvtoolnix: simplify configure options with qt5_get_bindir Bug: https://bugs.gentoo.org/643328 media-video/mkvtoolnix/mkvtoolnix-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild b/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild index 7df0170f7f9..47aea66ecb7 100644 --- a/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild +++ b/media-video/mkvtoolnix/mkvtoolnix-9999.ebuild @@ -73,10 +73,10 @@ src_configure() { if use qt5 ; then # ac/qt5.m4 finds default Qt version set by qtchooser, bug #532600 myconf+=( - --with-moc=/usr/$(get_libdir)/qt5/bin/moc - --with-uic=/usr/$(get_libdir)/qt5/bin/uic - --with-rcc=/usr/$(get_libdir)/qt5/bin/rcc - --with-qmake=/usr/$(get_libdir)/qt5/bin/qmake + --with-moc=$(qt5_get_bindir)/moc + --with-uic=$(qt5_get_bindir)/uic + --with-rcc=$(qt5_get_bindir)/rcc + --with-qmake=$(qt5_get_bindir)/qmake ) fi