mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
* scripts/cpp: Test the exit status from 'type', not 'awk'.
* scripts/cpp: Test the exit status from 'type', not 'awk'.
This commit is contained in:
parent
5786183905
commit
71ede9a8f8
@ -1,5 +1,7 @@
|
||||
2001-12-05 Geoff Keating <geoffk@redhat.com>
|
||||
|
||||
* scripts/cpp: Test the exit status from 'type', not 'awk'.
|
||||
|
||||
* sysdeps/powerpc/__longjmp.S: Don't restore FP registers.
|
||||
* sysdeps/powerpc/fpu/__longjmp.S: Do restore FP registers.
|
||||
* sysdeps/powerpc/setjmp.S: Don't save FP registers.
|
||||
|
@ -1,8 +1,9 @@
|
||||
#! /bin/sh
|
||||
cpp=`which cpp 2>/dev/null`
|
||||
if test $? -ne 0; then
|
||||
cpp=`type cpp 2>/dev/null | awk '{ print $NF }'`
|
||||
if test $? -ne 0; then
|
||||
if type cpp 2>/dev/null >/dev/null; then
|
||||
cpp=`type cpp 2>/dev/null | awk '{ print $NF }'`
|
||||
else
|
||||
cpp=`gcc -print-file-name=cpp 2>/dev/null`
|
||||
if test $? -ne 0; then
|
||||
if test -x /lib/cpp; then
|
||||
|
Loading…
Reference in New Issue
Block a user