From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] buildtools: output build failure reason to stderr Date: Tue, 06 Feb 2018 01:19:35 +0100 Message-ID: <1927641.bPKi57snqr@xps> References: <1517492959-15104-1-git-send-email-arybchenko@solarflare.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, Neil Horman To: Andrew Rybchenko Return-path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 166FD1B419 for ; Tue, 6 Feb 2018 01:19:39 +0100 (CET) In-Reply-To: <1517492959-15104-1-git-send-email-arybchenko@solarflare.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 01/02/2018 14:49, Andrew Rybchenko: > - echo "$SYM is not flagged as experimental" > - echo "but is listed in version map" > - echo "Please add __rte_experimental to the definition of $SYM" > + cat >&2 < +$SYM is not flagged as experimental > +but is listed in version map > +Please add __rte_experimental to the definition of $SYM > +EOM You could use <<- EOM and keep indentation of the message. You can check how it's done in devtools scripts.