diff options
Diffstat (limited to 'utils/llvmgrep')
-rwxr-xr-x | utils/llvmgrep | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/utils/llvmgrep b/utils/llvmgrep index ec2bd4f5be..a1f77636c4 100755 --- a/utils/llvmgrep +++ b/utils/llvmgrep @@ -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 |