mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +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.
6 lines
113 B
Plaintext
6 lines
113 B
Plaintext
# preconfigure fragment for i386.
|
|
|
|
case "$machine" in
|
|
i[4567]86) base_machine=i386 machine=i386/$machine ;;
|
|
esac
|