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 D751B58973 for ; Mon, 8 Feb 2016 08:20:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5223C21C076; Mon, 8 Feb 2016 08:20:26 +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 E5F3021C076 for ; Mon, 8 Feb 2016 08:20:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A809F340894 for ; Mon, 8 Feb 2016 08:20:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 891BC8F2 for ; Mon, 8 Feb 2016 08:20:21 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1454919598.ee4f2cc19c2cf18a7d557df94016aa05c859ff2b.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: tools-reference/cat/ X-VCS-Repository: proj/devmanual X-VCS-Files: tools-reference/cat/text.xml X-VCS-Directories: tools-reference/cat/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: ee4f2cc19c2cf18a7d557df94016aa05c859ff2b X-VCS-Branch: master Date: Mon, 8 Feb 2016 08:20:21 +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: ea0d3754-6bb8-4771-8ce4-e524f3ba3a06 X-Archives-Hash: 9ac8e309ce352d48e0ad0eb9ce59c809 commit: ee4f2cc19c2cf18a7d557df94016aa05c859ff2b Author: Göktürk Yüksek binghamton edu> AuthorDate: Mon Feb 8 07:45:18 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Feb 8 08:19:58 2016 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=ee4f2cc1 tools-reference/cat: add '|| die' to the here documents example Signed-off-by: Göktürk Yüksek binghamton.edu> tools-reference/cat/text.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools-reference/cat/text.xml b/tools-reference/cat/text.xml index 87ad905..7b13468 100644 --- a/tools-reference/cat/text.xml +++ b/tools-reference/cat/text.xml @@ -51,7 +51,7 @@ On the other hand, cat is exceptionally useful for so-called src_install() { # ... - cat <<- EOF > "${D}/etc/mail/trusted-users" + cat <<- EOF > "${D}/etc/mail/trusted-users" || die # trusted-users - users that can send mail as others without a warning # apache, mailman, majordomo, uucp are good candidates EOF