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 D56271388C1 for ; Thu, 19 Nov 2015 15:26:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65FBCE07A3; Thu, 19 Nov 2015 15:26:24 +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 CF16BE07A3 for ; Thu, 19 Nov 2015 15:26:23 +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 E3ADE3406F2 for ; Thu, 19 Nov 2015 15:26:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F28E99F5 for ; Thu, 19 Nov 2015 15:26:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1447946500.a41f45b4de0af08f23a3e0a05d25f695c7e766b3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-eapi6 commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/python-utils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a41f45b4de0af08f23a3e0a05d25f695c7e766b3 X-VCS-Branch: python-eapi6 Date: Thu, 19 Nov 2015 15:26:18 +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: 7444d7f9-f81b-4d25-9d38-fcafd2524db2 X-Archives-Hash: 5a0db82559ce35a218d835028f4975ef commit: a41f45b4de0af08f23a3e0a05d25f695c7e766b3 Author: Michał Górny gentoo org> AuthorDate: Thu Nov 19 15:21:40 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Nov 19 15:21:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41f45b4 python-utils-r1.eclass: Make heredocs consistent eclass/python-utils-r1.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index e2bf667..815dbae 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -933,11 +933,11 @@ python_wrapper_setup() { local x for x in "${nonsupp[@]}"; do - cat >"${workdir}"/bin/${x} <<__EOF__ || die -#!/bin/sh -echo "${x} is not supported by ${EPYTHON}" >&2 -exit 127 -__EOF__ + cat >"${workdir}"/bin/${x} <<-_EOF_ || die + #!/bin/sh + echo "${x} is not supported by ${EPYTHON}" >&2 + exit 127 +_EOF_ chmod +x "${workdir}"/bin/${x} || die done