diff options
author | Michael Meissner <gnu@the-meissners.org> | 1996-06-20 16:20:05 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1996-06-20 16:20:05 +0000 |
commit | d5379e02ad273b9c12633389eb6acd1b3441efed (patch) | |
tree | f1cee75704178b95ac43e153834d68514c151cac /config.guess | |
parent | 7ad1171e581328ef44d9637286eeb7f9b07f8eaa (diff) | |
download | emacs-d5379e02ad273b9c12633389eb6acd1b3441efed.tar.gz |
Add support for PowerPC Linuxlibc-960628libc-960627libc-960626libc-960625libc-960624libc-960623libc-960622libc-960621libc-1-92
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 925dab43498..c416b7811ea 100755 --- a/config.guess +++ b/config.guess @@ -364,6 +364,8 @@ EOF echo "${UNAME_MACHINE}-unknown-linux" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0 + elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf32ppc"; then + echo "powerpc-unknown-linux" ; exit 0 elif test "${UNAME_MACHINE}" = "alpha" ; then echo alpha-unknown-linux ; exit 0 elif test "${UNAME_MACHINE}" = "sparc" ; then |