1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Make these scripts work on SunOS too.

llvm-svn: 16805
This commit is contained in:
Reid Spencer 2004-10-07 16:03:21 +00:00
parent e1d5d599bd
commit e53aa77b7a
2 changed files with 11 additions and 2 deletions

View File

@ -47,7 +47,11 @@ ARGS="$*"
TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
if test -d "$TOPDIR" ; then
cd $TOPDIR
find $LLVMDO_DIRS -type f \
case `uname -s` in
SunOS) find_prog=gfind ;;
*) find_prog=find ;;
esac
$find_prog $LLVMDO_DIRS -type f \
\( \
-path 'docs/doxygen/*' -o \
-path 'docs/CommandGuide/html/*' -o \

View File

@ -21,7 +21,12 @@
TOPDIR=`pwd | sed -e 's#\(.*/llvm\).*#\1#'`
if test -d "$TOPDIR" ; then
cd $TOPDIR
./utils/llvmdo -dirs "include lib tools utils docs examples test projects" egrep -H -n "$*"
case `uname -s` in
SunOS) grep_cmd="ggrep -H -n" ;;
Linux) grep_cmd="egrep -H -n" ;;
*) grep_cmd="egrep -l -n" ;;
esac
./utils/llvmdo -dirs "include lib tools utils docs examples test projects" $grep_cmd "$*"
else
echo "Can't find LLVM top directory in $TOPDIR"
fi