linux: Fix error when generating symbols.
Somehow strip would return 1 when a directory is passed, so we have to wrap it in a script to avoid the error.
This commit is contained in:
parent
79dfb2d2f3
commit
f96485f950
2 changed files with 10 additions and 1 deletions
6
tools/posix/strip.sh
Executable file
6
tools/posix/strip.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Ignore errors from strip.
|
||||
strip "$@"
|
||||
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue