From 6a0597dada66ca786ae2f037f3ed732ad32621d2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 19 Nov 2015 16:21:40 +0100 Subject: [PATCH] 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 884867fa0222..a96afeda77f7 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -936,11 +936,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.26.2