From commits-return-9119-archive-asf-public=cust-asf.ponee.io@nuttx.apache.org Thu May 7 02:00:40 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id C3AC318064F for ; Thu, 7 May 2020 04:00:39 +0200 (CEST) Received: (qmail 84732 invoked by uid 500); 7 May 2020 02:00:39 -0000 Mailing-List: contact commits-help@nuttx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nuttx.apache.org Delivered-To: mailing list commits@nuttx.apache.org Received: (qmail 84723 invoked by uid 99); 7 May 2020 02:00:39 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 May 2020 02:00:39 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id EEC4D8BFAB; Thu, 7 May 2020 02:00:38 +0000 (UTC) Date: Thu, 07 May 2020 02:00:38 +0000 To: "commits@nuttx.apache.org" Subject: [incubator-nuttx-apps] branch master updated: netutils/usrsock_rpmsg: Fix build failures MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158881683888.27398.12448581621202964267@gitbox.apache.org> From: aguettouche@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-nuttx-apps X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4389885cf6662eb6d6f56bb89035fa930d0c8752 X-Git-Newrev: 779635afa6b4b1bd6cd1d5d6fc40919d57620277 X-Git-Rev: 779635afa6b4b1bd6cd1d5d6fc40919d57620277 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 779635a netutils/usrsock_rpmsg: Fix build failures 779635a is described below commit 779635afa6b4b1bd6cd1d5d6fc40919d57620277 Author: Gregory Nutt AuthorDate: Wed May 6 19:39:44 2020 -0600 netutils/usrsock_rpmsg: Fix build failures Not all files were correctly modified when usrsock_rpmsg was moved from apps/system to apps/netutils. Changes were overlooked in the Makefile and Make.defs file. --- netutils/usrsock_rpmsg/Make.defs | 4 ++-- netutils/usrsock_rpmsg/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/netutils/usrsock_rpmsg/Make.defs b/netutils/usrsock_rpmsg/Make.defs index e0df0c4..cf94682 100644 --- a/netutils/usrsock_rpmsg/Make.defs +++ b/netutils/usrsock_rpmsg/Make.defs @@ -1,5 +1,5 @@ ############################################################################ -# apps/system/usrsock_rpmsg/Make.defs +# apps/netutils/usrsock_rpmsg/Make.defs # # Copyright (C) 2018 Pinecone Inc. All rights reserved. # Author: Pinecone @@ -34,5 +34,5 @@ ############################################################################ ifeq ($(CONFIG_NETUTILS_USRSOCK_RPMSG),y) -CONFIGURED_APPS += $(APPDIR)/system/usrsock_rpmsg +CONFIGURED_APPS += $(APPDIR)/netutils/usrsock_rpmsg endif diff --git a/netutils/usrsock_rpmsg/Makefile b/netutils/usrsock_rpmsg/Makefile index 7f089ab..42dc56b 100644 --- a/netutils/usrsock_rpmsg/Makefile +++ b/netutils/usrsock_rpmsg/Makefile @@ -1,5 +1,5 @@ ############################################################################ -# apps/system/usrsock_rpmsg/Makefile +# apps/netutils/usrsock_rpmsg/Makefile # # Copyright (C) 2018 Pinecone Inc. All rights reserved. # Author: Pinecone