diff options
-rwxr-xr-x | utils/llvmgrep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/llvmgrep b/utils/llvmgrep index 540f059..dc15da4 100755 --- a/utils/llvmgrep +++ b/utils/llvmgrep @@ -29,7 +29,7 @@ if test -d "$TOPDIR" ; then cd $TOPDIR case `uname -s` in SunOS) grep_cmd="ggrep -H -n" ;; - Linux) grep_cmd="egrep -H -n" ;; + Linux|Darwin) grep_cmd="egrep -H -n" ;; *) grep_cmd="egrep -l -n" ;; esac ./utils/llvmdo -topdir "$TOPDIR" \ |