You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2019/02/26 11:22:58 UTC

[mynewt-nimble] branch master updated: porting: Fix typos in controller makefile

This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


The following commit(s) were added to refs/heads/master by this push:
     new 3e426ad  porting: Fix typos in controller makefile
3e426ad is described below

commit 3e426ad80480b55df048c2b9aa76ffb536a9533d
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Tue Feb 26 12:12:48 2019 +0100

    porting: Fix typos in controller makefile
---
 porting/nimble/Makefile.controller | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/porting/nimble/Makefile.controller b/porting/nimble/Makefile.controller
index a3df8df..8479ac1 100644
--- a/porting/nimble/Makefile.controller
+++ b/porting/nimble/Makefile.controller
@@ -25,8 +25,8 @@ NIMBLE_INCLUDE += \
 	$(NULL)
 
 NIMBLE_SRC += \
-	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT/nimble/transport/ram/src/*.c)) \
-	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT/nimble/controller/src/*.c)) \
-	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT/nimble/drivers/nrf52/src/*.c)) \
+	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/transport/ram/src/*.c)) \
+	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/controller/src/*.c)) \
+	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/drivers/nrf52/src/*.c)) \
 	$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/porting/nimble/controller/src/*.c)) \
 	$(NULL)