From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id D6C227DF8 for ; Fri, 3 Apr 2015 10:20:15 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP; 03 Apr 2015 01:20:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,516,1422950400"; d="scan'208";a="674750736" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by orsmga001.jf.intel.com with ESMTP; 03 Apr 2015 01:20:13 -0700 Received: from irsmsx109.ger.corp.intel.com ([169.254.13.95]) by IRSMSX103.ger.corp.intel.com ([169.254.3.129]) with mapi id 14.03.0224.002; Fri, 3 Apr 2015 09:20:13 +0100 From: "Butler, Siobhan A" To: Thomas Monjalon , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 2/5] mk: reduce PDF build commands Thread-Index: AQHQbX+S5UuuKp0/1k+L2eODoWnI7p068sYQ Date: Fri, 3 Apr 2015 08:20:12 +0000 Message-ID: <0C5AFCA4B3408848ADF2A3073F7D8CC86D58869B@IRSMSX109.ger.corp.intel.com> References: <1428004702-8987-1-git-send-email-thomas.monjalon@6wind.com> <1428004702-8987-3-git-send-email-thomas.monjalon@6wind.com> In-Reply-To: <1428004702-8987-3-git-send-email-thomas.monjalon@6wind.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 2/5] mk: reduce PDF build commands X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Apr 2015 08:20:16 -0000 > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Thursday, April 2, 2015 8:58 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 2/5] mk: reduce PDF build commands >=20 > In case of documents without image, an empty rm command can be seen if > V=3D1. > Remove it to avoid disturbing debugging. >=20 > Signed-off-by: Thomas Monjalon > --- > mk/rte.sdkdoc.mk | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/mk/rte.sdkdoc.mk b/mk/rte.sdkdoc.mk index f91e079..9952f25 > 100644 > --- a/mk/rte.sdkdoc.mk > +++ b/mk/rte.sdkdoc.mk > @@ -99,7 +99,7 @@ guides-pdf-%: > $(Q)$(RTE_SPHINX_BUILD) -b latex $(RTE_SPHINX_VERBOSE) \ > -c $(RTE_SDK)/doc/guides $(RTE_SDK)/doc/guides/$* \ > $(RTE_OUTPUT)/doc/pdf/guides/$* > - $(Q)rm -f $^ > + $(if $^,$(Q)rm -f $^) > @echo 'pdflatex processing $@...' > $(Q)$(MAKE) all-pdf -sC $(RTE_OUTPUT)/doc/pdf/guides/$* \ > LATEXOPTS=3D$(RTE_PDFLATEX_VERBOSE) > -- > 2.2.2 Acked-by Siobhan Butler