From 779635afa6b4b1bd6cd1d5d6fc40919d57620277 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 6 May 2020 19:39:44 -0600 Subject: [PATCH] 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 e0df0c478..cf9468264 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 7f089ab74..42dc56bfd 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