You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ko...@apache.org on 2021/02/17 13:45:51 UTC

[mynewt-nimble] branch master updated: porting: fix typo in CROSS_COMPILE

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

kopyscinski 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 0aa3fe6  porting: fix typo in CROSS_COMPILE
0aa3fe6 is described below

commit 0aa3fe6d51a1b901309a4c732c7dfc3716ae835d
Author: Krzysztof Kopyściński <kr...@codecoup.pl>
AuthorDate: Wed Feb 17 14:27:30 2021 +0100

    porting: fix typo in CROSS_COMPILE
---
 porting/examples/dummy/Makefile         | 2 +-
 porting/examples/linux/Makefile         | 2 +-
 porting/examples/linux_blemesh/Makefile | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/porting/examples/dummy/Makefile b/porting/examples/dummy/Makefile
index 0cf4767..861934f 100644
--- a/porting/examples/dummy/Makefile
+++ b/porting/examples/dummy/Makefile
@@ -19,7 +19,7 @@
 
 # Toolchain commands
 CROSS_COMPILE ?=
-CC      := ccache $(CROSS_COMPLIE)gcc
+CC      := ccache $(CROSS_COMPILE)gcc
 CXX     := ccache $(CROSS_COMPILE)g++
 LD      := $(CROSS_COMPILE)gcc
 AR      := $(CROSS_COMPILE)ar
diff --git a/porting/examples/linux/Makefile b/porting/examples/linux/Makefile
index 4217ea3..11f4ebc 100644
--- a/porting/examples/linux/Makefile
+++ b/porting/examples/linux/Makefile
@@ -17,7 +17,7 @@
 
 # Toolchain commands
 CROSS_COMPILE ?=
-CC      := ccache $(CROSS_COMPLIE)gcc
+CC      := ccache $(CROSS_COMPILE)gcc
 CXX     := ccache $(CROSS_COMPILE)g++
 LD      := $(CROSS_COMPILE)gcc
 AR      := $(CROSS_COMPILE)ar
diff --git a/porting/examples/linux_blemesh/Makefile b/porting/examples/linux_blemesh/Makefile
index 0e93424..556fc8c 100644
--- a/porting/examples/linux_blemesh/Makefile
+++ b/porting/examples/linux_blemesh/Makefile
@@ -17,7 +17,7 @@
 
 # Toolchain commands
 CROSS_COMPILE ?=
-CC      := ccache $(CROSS_COMPLIE)gcc
+CC      := ccache $(CROSS_COMPILIE)gcc
 CXX     := ccache $(CROSS_COMPILE)g++
 LD      := $(CROSS_COMPILE)gcc
 AR      := $(CROSS_COMPILE)ar