summaryrefslogtreecommitdiffstats
path: root/patches/opkg-utils-r4747/0201-opkg-build-use-CROSS_COMPILE-ar.patch
blob: 388e18bfc21c3ad8b069684ad97b7db64d5e9c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From: =?UTF-8?q?Andreas=20Bie=C3=9Fmann?= <andreas@biessmann.de>
Date: Fri, 20 Jan 2012 09:03:55 +0100
Subject: [PATCH] opkg-build: use ${CROSS_COMPILE}ar
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Some host systems do not provide proper ar, make it possible to switch
to cross-ar here.

Signed-off-by: Andreas Bießmann <andreas@biessmann.de>
---
 opkg-build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opkg-build b/opkg-build
index fb533a6..646787b 100755
--- a/opkg-build
+++ b/opkg-build
@@ -250,7 +250,7 @@ if [ "$outer" = "ar" ] ; then
   # chown the content to "0:0".  files. This is needed as high UID values (>
   # 99999) cause problems when parsing ar file headers
   ( cd $tmp_dir && chown 0:0 ./debian-binary ./data.tar.gz ./control.tar.gz &&
-	ar -crf $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz )
+	${CROSS_COMPILE}ar -crf $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz )
 else
   ( cd $tmp_dir && tar -cz --format=gnu -f $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz )
 fi