diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-05-28 14:41:40 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-28 14:41:40 +0200 |
commit | f18c33b4cc9c344c6ac8e28bfac5ae42befc8b1c (patch) | |
tree | 6808e0028d126569b0d10f01ccdaf6c95d373923 /package/fakeroot/01-powerpc64le-support.patch | |
parent | 58689c130066c7015d424a931aee99f59bde0f64 (diff) | |
download | buildroot-f18c33b4cc9c344c6ac8e28bfac5ae42befc8b1c.tar.gz buildroot-f18c33b4cc9c344c6ac8e28bfac5ae42befc8b1c.zip |
fakeroot: drop powerpc64le patch
As suggested by Arnout.
We don't provide fakeroot for the target, and using a powerpcp4le machine as
the build host is quite unlikely - So drop the patch.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/fakeroot/01-powerpc64le-support.patch')
-rw-r--r-- | package/fakeroot/01-powerpc64le-support.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/fakeroot/01-powerpc64le-support.patch b/package/fakeroot/01-powerpc64le-support.patch deleted file mode 100644 index c26d9a526a..0000000000 --- a/package/fakeroot/01-powerpc64le-support.patch +++ /dev/null @@ -1,29 +0,0 @@ -Description: powerpc64le-support.patch: Patch configure to support ppc64el. -Author: Adam Conrad <adconrad@ubuntu.com> - ---- fakeroot-1.20.orig/configure -+++ fakeroot-1.20/configure -@@ -6509,6 +6509,9 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux* - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; -+ powerpc64le-*linux*) -+ LD="${LD-ld} -m elf32lppclinux" -+ ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; -@@ -6525,9 +6528,12 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux* - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; -- ppc*-*linux*|powerpc*-*linux*) -+ ppc-*linux*|powerpc-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; -+ powerpcle-*linux*) -+ LD="${LD-ld} -m elf64lppc" -+ ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; |