mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
3e239be647
This patch makes non-ex-ports architectures set base_machine and machine based on the original configured machine value in preconfigure fragments, like ex-ports architectures, rather than in the toplevel configure.ac. Tested x86 that the disassembly of installed shared libraries is unchanged by the patch. * configure.ac (base_machine): Do not set specially for particular machines here. * configure: Regenerated. * sysdeps/powerpc/preconfigure: Move machine and base_machine settings from configure.ac. * sysdeps/i386/preconfigure: New file. * sysdeps/s390/preconfigure: Likewise. * sysdeps/sh/preconfigure: Likewise. * sysdeps/sparc/preconfigure: Likewise.
7 lines
175 B
Plaintext
7 lines
175 B
Plaintext
# preconfigure fragment for s390.
|
|
|
|
case "$machine" in
|
|
s390) base_machine=s390 machine=s390/s390-32 ;;
|
|
s390x) base_machine=s390 machine=s390/s390-64 ;;
|
|
esac
|