Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4bc40ee4 authored by Wei Wang's avatar Wei Wang Committed by android-build-merger
Browse files

Merge "Support Android.bp in mgrep" am: 1ee0fa0d am: 6528395f

am: a00af080

Change-Id: I75bf32a883a1a3a847a45300de7f9c10f4c2cb01
parents fb824ab2 a00af080
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1234,7 +1234,7 @@ case `uname -s` in
    Darwin)
        function mgrep()
        {
            find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk)' \
            find -E . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -type f -iregex '.*/(Makefile|Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' \
                -exec grep --color -n "$@" {} +
        }

@@ -1248,7 +1248,7 @@ case `uname -s` in
    *)
        function mgrep()
        {
            find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk)' -type f \
            find . -name .repo -prune -o -name .git -prune -o -path ./out -prune -o -regextype posix-egrep -iregex '(.*\/Makefile|.*\/Makefile\..*|.*\.make|.*\.mak|.*\.mk|.*\.bp)' -type f \
                -exec grep --color -n "$@" {} +
        }