[oe-commits] [meta-openembedded] 01/28: bridge-utils: modify the AR to cross toolchain

git at git.openembedded.org git at git.openembedded.org
Mon Dec 11 23:35:57 UTC 2017


This is an automated email from the git hooks/post-receive script.

armin_kuster pushed a commit to branch master-next
in repository meta-openembedded.

commit 40963dc77e91fc91ab90ac8c708d82a580823aa4
Author: Li Zhou <li.zhou at windriver.com>
AuthorDate: Thu Oct 19 15:12:10 2017 +0800

    bridge-utils: modify the AR to cross toolchain
    
    The Makefile uses the host “ar” tool when it should be using the
    ar from the target toolchain.
    
    Signed-off-by: Jiwei Sun <jiwei.sun at windriver.com>
    Signed-off-by: Li Zhou <li.zhou at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 ...ridge-Modifying-the-AR-to-cross-toolchain.patch | 34 ++++++++++++++++++++++
 .../bridge-utils/bridge-utils_1.5.bb               |  1 +
 2 files changed, 35 insertions(+)

diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
new file mode 100644
index 0000000..e477f41
--- /dev/null
+++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
@@ -0,0 +1,34 @@
+From 689e24ef05bd1772b2149e4eb48b058ca8361cf4 Mon Sep 17 00:00:00 2001
+From: Li Zhou <li.zhou at windriver.com>
+Date: Thu, 19 Oct 2017 11:34:18 +0800
+Subject: [PATCH 2/2] libbridge: Modifying the AR to cross toolchain
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The Makefile uses the host “ar” tool when it should be using the
+ar from the target toolchain.
+
+Upstream-Status: Pending
+
+Signed-off-by: Li Zhou <li.zhou at windriver.com>
+---
+ libbridge/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in
+index 11c0829..59d7355 100644
+--- a/libbridge/Makefile.in
++++ b/libbridge/Makefile.in
+@@ -1,7 +1,7 @@
+ 
+ KERNEL_HEADERS=-I at KERNEL_HEADERS@
+ 
+-AR=ar
++AR?=ar
+ RANLIB=@RANLIB@
+ 
+ CC=@CC@
+-- 
+1.9.1
+
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
index 6032ab0..723ae5f 100644
--- a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
+++ b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
@@ -7,6 +7,7 @@ SRC_URI += "\
     file://0003-bridge-fix-some-build-time-warnings-errno.h.patch \
     file://0004-libbridge-add-missing-include-s-fix-build-against-mu.patch \
     file://0005-build-don-t-ignore-CFLAGS-from-environment.patch \
+    file://0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch \
 "
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=f9d20a453221a1b7e32ae84694da2c37"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list