mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-11 09:29:33 +08:00
Make the gcc config.guess exec the toplevel config.guess. Update the toplevel config.guess from the gcc config.guess. From-SVN: r14976
5 lines
159 B
Bash
Executable File
5 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
# Use the top-level config.guess so that we don't have two of them.
|
|
guesssys=`echo $0 | sed 's|config.guess|../config.guess|'`
|
|
exec ${guesssys} "$@"
|