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 7B23C1384B4 for ; Wed, 25 Nov 2015 12:00:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A296421C03C; Wed, 25 Nov 2015 12:00:38 +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 AB9DE21C031 for ; Wed, 25 Nov 2015 12:00:37 +0000 (UTC) Received: from localhost.localdomain (d202-251.icpnet.pl [109.173.202.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 6FD49340634; Wed, 25 Nov 2015 12:00:35 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH] python-utils-r1.eclass: Make heredocs consistent Date: Wed, 25 Nov 2015 13:00:27 +0100 Message-Id: <1448452827-5091-1-git-send-email-mgorny@gentoo.org> X-Mailer: git-send-email 2.6.3 In-Reply-To: <5652F08D.70607@gentoo.org> References: <5652F08D.70607@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Archives-Salt: b85c3153-183c-4ce7-937b-7511f649184e X-Archives-Hash: c6defd798b751bf9c31051b96731c838 --- 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 7617c3f..4307142 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 -- 2.6.3