You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2020/05/07 02:00:38 UTC

[incubator-nuttx-apps] branch master updated: netutils/usrsock_rpmsg: Fix build failures

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 <gn...@nuttx.org>
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 <pi...@pinecone.net>
@@ -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 <pi...@pinecone.net>