Skip to content
Snippets Groups Projects
Commit d6b82033 authored by Simon McVittie's avatar Simon McVittie
Browse files

capture-libs: Fix path to hppa, m68k, powerpc, s390 ld.so.1

This was probably copy/paste damage from some other architecture.
According to https://sourceware.org/glibc/wiki/ABIList

 these
architectures are 32-bit (or technically 31-bit for s390) and install
their ld.so in /lib.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent fff84ffb
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
......@@ -55,7 +55,7 @@
# define LD_SO "/lib/ld-linux.so.3"
#elif defined(__hppa__) || defined(__m68k__) || defined(__powerpc__) || \
defined(__s390__)
# define LD_SO "/lib64/ld.so.1"
# define LD_SO "/lib/ld.so.1"
#elif defined(__powerpc64__) && __BYTE_ORDER == __LITTLE_ENDIAN
# define LD_SO "/lib/ld64.so.2"
#elif defined(__s390x__) || defined(__powerpc64__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment