From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 549201B323 for ; Mon, 5 Feb 2018 11:54:35 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Feb 2018 02:54:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,464,1511856000"; d="scan'208";a="15922622" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by orsmga006.jf.intel.com with ESMTP; 05 Feb 2018 02:54:33 -0800 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.101]) by irsmsx105.ger.corp.intel.com ([169.254.7.221]) with mapi id 14.03.0319.002; Mon, 5 Feb 2018 10:53:32 +0000 From: "Kovacevic, Marko" To: Thomas Monjalon CC: "dev@dpdk.org" , "olivier.matz@6wind.com" , "Varghese, Vipin" Thread-Topic: [PATCH v1] mk: fix external build failure Thread-Index: AQHTnmtZ38WCL3t/xU6RDShsXYYiCqOVncwAgAACscA= Date: Mon, 5 Feb 2018 10:53:31 +0000 Message-ID: <6DC05C7C5F25994B81B3F2F214251F66342959@IRSMSX104.ger.corp.intel.com> References: <20180205102243.16445-1-marko.kovacevic@intel.com> <189741475.qmuB92lqII@xps> In-Reply-To: <189741475.qmuB92lqII@xps> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNThmZjQyOTItN2E5MS00MzM2LTgxYWQtNThmM2YyOGRmZWIzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6InRIYVwvTllJOTBvQWgwQzU1ZThpSHpDZGplbDNKVFIyeTkwTlJmZTd5TlwvRT0ifQ== x-ctpclassification: CTP_NT 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 v1] mk: fix external build failure 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: Mon, 05 Feb 2018 10:54:35 -0000 > 05/02/2018 11:22, Marko Kovacevic: > > Updated the make build to fix external build issues >=20 > Please explain what is the issue. >=20 > > Fixes: 3a5c339d51a4 ("mk: support renamed Makefile in external project"= ) > > Cc: stable@dpdk.org >=20 > No need to Cc stable when fixing a bug which is not in a major release. Olivier reported an issue this morning, that my commit was breaking=20 the build of one of our external module: make[5]: /path/to/ext-module//path/to/ext-module/Makefile: No such file or = directory = =20 make[5]: *** No rule to make target '/path/to/ext-module//path/to/ext-modul= e/Makefile'. Stop. = =20 The reason is that entries in $(MAKEFILE_LIST) can be absolute. Marko.