diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-01-31 19:42:01 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-01-31 19:42:01 +0900 |
commit | be81495c16a62979f78a91fe8ed34dbdc82e37db (patch) | |
tree | 432892dc1e425149573fb66c220c9dd23289fbc3 /tool/darwin-ar | |
parent | 337189598af28297402b57df5ed1104ed336c15c (diff) |
Silence dozens of useless warnings from `nm` on macOS
Diffstat (limited to 'tool/darwin-ar')
-rwxr-xr-x | tool/darwin-ar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/darwin-ar b/tool/darwin-ar index 08e4aadb96..6f2a6ca2ad 100755 --- a/tool/darwin-ar +++ b/tool/darwin-ar @@ -1,5 +1,5 @@ #!/bin/bash exec 2> >(exec grep -v \ - -e 'has no symbols$' \ + -e ' no symbols$' \ >&2) exec "$@" |