From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BF7E81384B4 for ; Tue, 24 Nov 2015 21:58:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66F1B21C0EC; Tue, 24 Nov 2015 21:58:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0B84521C0D6 for ; Tue, 24 Nov 2015 21:58:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB5EC340775 for ; Tue, 24 Nov 2015 21:58:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B765D1068 for ; Tue, 24 Nov 2015 21:58:40 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1448402187.396e8ef67d5956f1e2fd11b6ea91589c8b8b133a.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/gnome2-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 396e8ef67d5956f1e2fd11b6ea91589c8b8b133a X-VCS-Branch: master Date: Tue, 24 Nov 2015 21:58:40 +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: 1c1304fe-92b1-422e-8d8c-3d59eafa434f X-Archives-Hash: 53725edfeb08bfd3a8f8d812dd9afe7f commit: 396e8ef67d5956f1e2fd11b6ea91589c8b8b133a Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Nov 21 11:25:07 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Tue Nov 24 21:56:27 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396e8ef6 gnome2-utils.eclass: make sure configure exists before try to sed it Would cause error messages, see bug #566202. Thanks to Gregory Turner for reporting. https://bugs.gentoo.org/show_bug.cgi?id=566202 eclass/gnome2-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index f945a78..83a3610 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -486,7 +486,7 @@ gnome2_disable_deprecation_warning() { fi done < <(find "${S}" -name "Makefile.in" \ -o -name "Makefile.am" -o -name "Makefile.decl" \ - | sort; echo configure) + | sort; [[ -f "${S}"/configure ]] && echo configure) # TODO: sedding configure.ac can trigger maintainer mode; bug #439602 # -o -name "configure.ac" -o -name "configure.in" \ # | sort; echo configure)