summaryrefslogtreecommitdiffstats
path: root/patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-09-10 09:23:51 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2019-09-10 09:32:15 +0200
commit1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4 (patch)
tree56a45c0252984991236ecc11765aa3f39e7f1c8f /patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch
parentc486225138570a4608301b414707c7e4902c4060 (diff)
downloadDistroKit-1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4.tar.gz
DistroKit-1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4.tar.xz
opkg-utils: remove local patches
This was a backport from PTXdist upstream. The patches are identical to the patches in the current PTXdist version. The local copy is no longer needed. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch')
-rw-r--r--patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch b/patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch
deleted file mode 100644
index 9efe075..0000000
--- a/patches/opkg-utils-0.3.6/0100-opkg-build-use-CROSS_COMPILE-ar.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-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 0050c2bb11ed..4fddf4c9afda 100755
---- a/opkg-build
-+++ b/opkg-build
-@@ -299,7 +299,7 @@ fi
-
- rm -f $pkg_file
- if [ "$outer" = "ar" ] ; then
-- ( cd $tmp_dir && ar -crfD $pkg_file ./debian-binary ./control.tar.gz ./data.tar.$cext )
-+ ( cd $tmp_dir && ${CROSS_COMPILE}ar -crfD $pkg_file ./debian-binary ./control.tar.gz ./data.tar.$cext )
- else
- ( cd $tmp_dir && tar -c $tsortargs --mtime="$build_date" $tarformat ./debian-binary ./control.tar.gz ./data.tar.$cext | gzip $zipargs > $pkg_file )
- fi