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 693731396D9 for ; Fri, 17 Nov 2017 17:33:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9C14E0CEB; Fri, 17 Nov 2017 17:33:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A916FE0CEB for ; Fri, 17 Nov 2017 17:33:22 +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 4F7AD33BEBE for ; Fri, 17 Nov 2017 17:33:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E31859E13 for ; Fri, 17 Nov 2017 17:33:19 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1510939979.3266783b8abfccebbb6f719d11ab974ce77f34cb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mlt/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mlt/mlt-6.4.1-r5.ebuild X-VCS-Directories: media-libs/mlt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3266783b8abfccebbb6f719d11ab974ce77f34cb X-VCS-Branch: master Date: Fri, 17 Nov 2017 17:33:19 +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: 8bc3bda6-e6e5-45dd-bf9d-43bc082a16a6 X-Archives-Hash: f0c007d1504c18569014e0c4557cb7a8 commit: 3266783b8abfccebbb6f719d11ab974ce77f34cb Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 17 17:32:26 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 17 17:32:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3266783b media-libs/mlt: Fix swig build opts Bug: https://bugs.gentoo.org/637904 Package-Manager: Portage-2.3.13, Repoman-2.3.4 media-libs/mlt/mlt-6.4.1-r5.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/mlt/mlt-6.4.1-r5.ebuild b/media-libs/mlt/mlt-6.4.1-r5.ebuild index 64cf548226c..cf1136ab792 100644 --- a/media-libs/mlt/mlt-6.4.1-r5.ebuild +++ b/media-libs/mlt/mlt-6.4.1-r5.ebuild @@ -174,14 +174,14 @@ src_configure() { # TODO: add swig language bindings # see also https://www.mltframework.org/twiki/bin/view/MLT/ExtremeMakeover - local swig_lang=() + local swig_lang # TODO: java perl php tcl for i in lua python ruby ; do - use $i && swig_lang+=( $i ) + use $i && swig_lang="${swig_lang} $i" done - [[ -z ${swig_lang} ]] && swig_lang=( none ) + [[ -z "${swig_lang}" ]] && swig_lang="none" - econf ${myconf[@]} --swig-languages="${swig_lang[@]}" + econf ${myconf[@]} --swig-languages="${swig_lang}" sed -i -e s/^OPT/#OPT/ "${S}/config.mak" || die }