From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f42.google.com (mail-wg0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 121927E88 for ; Wed, 8 Oct 2014 18:58:34 +0200 (CEST) Received: by mail-wg0-f42.google.com with SMTP id z12so11921905wgg.25 for ; Wed, 08 Oct 2014 10:05:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=hA63ySlKK6Jlky3r6vzrkEPJAcPhfCO2yNKggUlkXLs=; b=iGsQpLLJ7t/q3F69Hya4BmEYlL4S4EApPAGKiIhuzmCRC6TpP/eLi18iW+gR2ar05q TYgbU2rN+Lyx9WZ3x9LSU0NeiXdRqFZcQP3Vq5EEPooYX7EYnHZC3T5nH5gA1N4SsurE ihB2al7uPgKGJ9z17q7oflHGRNzpI8Ydz6v0ikdqN43oJ6h+r6NMWy/nzyZ95DnP0sj0 pzE+XNhe9NT6nvdxF/Oj6LbVr2Kn7/IPEHX1QAXH29TQphrE7vJ4tvnYLD2xACXrKfN5 2RFtJeV1uQLDFCmslkE1Otqq9o7KsmGP7W2ZI0BAN2MQoVw6XKDI81wC5NnBGM5AS/Lq Dl0g== X-Gm-Message-State: ALoCoQlSFzff6JpXk29HqqovLaK9FzwVoEfVaDf/t0i2/SXtZeohUK3CRg3Uo63XNGp38NM/Xh6p X-Received: by 10.194.77.18 with SMTP id o18mr12723983wjw.60.1412787952097; Wed, 08 Oct 2014 10:05:52 -0700 (PDT) Received: from xps13.localnet (16.17.90.92.rev.sfr.net. [92.90.17.16]) by mx.google.com with ESMTPSA id v9sm743054wjy.14.2014.10.08.10.05.50 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Oct 2014 10:05:51 -0700 (PDT) From: Thomas Monjalon To: Sergio Gonzalez Monroy Date: Wed, 08 Oct 2014 19:05:32 +0200 Message-ID: <1731940.NUuDDJsRCL@xps13> Organization: 6WIND User-Agent: KMail/4.13.3 (Linux/3.15.8-1-ARCH; KDE/4.13.3; x86_64; ; ) In-Reply-To: <1412611749-7901-1-git-send-email-sergio.gonzalez.monroy@intel.com> References: <1412611749-7901-1-git-send-email-sergio.gonzalez.monroy@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] Pass verbose flag to kernel module 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: Wed, 08 Oct 2014 16:58:34 -0000 Hi Sergio, 2014-10-06 17:09, Sergio Gonzalez Monroy: > --- a/mk/rte.module.mk > +++ b/mk/rte.module.mk > @@ -78,7 +78,7 @@ build: _postbuild > $(MODULE).ko: $(SRCS_LINKS) > @if [ ! -f $(notdir Makefile) ]; then ln -nfs $(SRCDIR)/Makefile . ; fi > @$(MAKE) -C $(RTE_KERNELDIR) M=$(CURDIR) O=$(RTE_KERNELDIR) \ > - CROSS_COMPILE=$(CROSS) > + V=$(if $(V),1,0) CROSS_COMPILE=$(CROSS) Please could you explain why it is needed? The variable V should be inherited by the recursive make. It's working without your patch in my test. -- Thomas