From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id AB8AD20C1D; Mon, 5 Feb 2018 19:19:38 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 05 Feb 2018 19:19:38 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=ZFtGF9wJ8N2pMZDa9UVLYNwN/G XYV2EGv++4WklA0FA=; b=qVZ43abri3LaqZokwMxdJvdSGjRwxcELoVFS9NeEG1 XQ4RZQtTtzWteHuHRwtF3qwBZIcNKITvx5nH/V26K4xFQ9f/K6oDEMIW9FWwiBVm CHM+4RTG2mdDdmN4oDUZSh7GdgEhq8mGzebzmTd/A1THQOLIdbn4w26oDiLmXQnP E= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ZFtGF9 wJ8N2pMZDa9UVLYNwN/GXYV2EGv++4WklA0FA=; b=NJO2ZVZyZ8u+3sHuTGXdSx T2rv5yuAETTQwWrWJcrojew8LPYSf7+5Dk5P73jNGd+6omrnRWPYBF6Hi8yNp6K2 l7Ja0gWJGuXIB6a1smhYF3wNUZWJtKuBrXKODWIK8kZk9rq+bvfBZyHbNxmikRhv EmU1SL6Oipq6ojMocv91OwTCcbNbUXU2YY1OXT3NXrLYMpck/voP7y1+Cfp85bDW OZWinuPsgS2Bh+3XowcR7pHt5/EdilqMUFjPWFROWrAYoWGv/zTuRW6oaJ6uKYND AGqlnf3FXSk+i603v9D5rDwKxHNfITj+9SLPO0z/X0nu9Xm+d2PpH7Jt4jYexL5g == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 6E39C7E13B; Mon, 5 Feb 2018 19:19:38 -0500 (EST) From: Thomas Monjalon To: Andrew Rybchenko Cc: dev@dpdk.org, Neil Horman Date: Tue, 06 Feb 2018 01:19:35 +0100 Message-ID: <1927641.bPKi57snqr@xps> In-Reply-To: <1517492959-15104-1-git-send-email-arybchenko@solarflare.com> References: <1517492959-15104-1-git-send-email-arybchenko@solarflare.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] buildtools: output build failure reason to stderr X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2018 00:19:39 -0000 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.