From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8D91AA04DB; Mon, 16 Nov 2020 10:33:51 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 037C6C8B4; Mon, 16 Nov 2020 10:33:50 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 3FAE9C8B2 for ; Mon, 16 Nov 2020 10:33:47 +0100 (CET) IronPort-SDR: RE2ykBlxKd+N90VaWOs7sahPgRYkOjRx6AXRChtRK+KsnHjGznhV4QhrjPeogka36C8AWzdqcY FhLPw0V/NUwQ== X-IronPort-AV: E=McAfee;i="6000,8403,9806"; a="158498293" X-IronPort-AV: E=Sophos;i="5.77,482,1596524400"; d="scan'208";a="158498293" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Nov 2020 01:33:44 -0800 IronPort-SDR: o/sSmfF2w0kf6h6+vxt6sMaS8k3ZQb9a0Fxh3C2saFfua0SOdxiKXLQIIEPR8Wh1a69YTgGFdX ja9BkwGjq0jQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,482,1596524400"; d="scan'208";a="324748362" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by orsmga003.jf.intel.com with ESMTP; 16 Nov 2020 01:33:43 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: stephen@networkplumber.org, Bruce Richardson Date: Mon, 16 Nov 2020 09:33:37 +0000 Message-Id: <20201116093337.46503-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20201116022347.26136-1-stephen@networkplumber.org> References: <20201116022347.26136-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2] examples/multi_process: fix missing SPDX headers 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The makefiles for some of the multi_process example files were missing SPDX license headers, so add them. These Makefiles completely replaced the older makefiles and were written from scratch, not based on previous versions, so add a new copyright year on them. Fixes: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build") Suggested-by: Stephen Hemminger Signed-off-by: Bruce Richardson --- v2: adjust copyright year to reflect year of authorship add more detail and fixes line to commit log. --- examples/multi_process/Makefile | 3 +++ examples/multi_process/client_server_mp/Makefile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile index f0a999745..e55204495 100644 --- a/examples/multi_process/Makefile +++ b/examples/multi_process/Makefile @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2020 Intel Corporation + subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp .PHONY: all static shared clean $(subdirs) diff --git a/examples/multi_process/client_server_mp/Makefile b/examples/multi_process/client_server_mp/Makefile index e8debdfd9..f4cab6313 100644 --- a/examples/multi_process/client_server_mp/Makefile +++ b/examples/multi_process/client_server_mp/Makefile @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2020 Intel Corporation + subdirs := mp_client mp_server .PHONY: all static shared clean $(subdirs) -- 2.25.1