mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
* sunrpc/Makefile (rpcgen-cmd): Use ../scripts/cpp in rpcgen calls. * scripts/cpp: New file.
This commit is contained in:
21
scripts/cpp
Executable file
21
scripts/cpp
Executable file
@ -0,0 +1,21 @@
|
||||
#! /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
|
||||
cpp=`gcc -print-file-name=cpp 2>/dev/null`
|
||||
if test $? -ne 0; then
|
||||
if test -x /lib/cpp; then
|
||||
cpp=/lib/cpp
|
||||
else
|
||||
echo "cpp not found" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
exec $cpp $*
|
||||
Local Variables:
|
||||
mode: sh
|
||||
End:
|
Reference in New Issue
Block a user