mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
provision-android-ndk: let script work when no NDKs will be installed
The other form of find gave: # find $NDK_BASE -type f -executable -print0 | xargs -0 chmod a+x chmod: missing operand after ‘a+x’ Try 'chmod --help' for more information.
This commit is contained in:
parent
5514000376
commit
97553c516f
1 changed files with 1 additions and 1 deletions
|
@ -27,4 +27,4 @@ chmod g+w $NDK_BASE
|
|||
|
||||
# ensure all users can read and execute the NDK
|
||||
chmod -R a+rX $NDK_BASE/
|
||||
find $NDK_BASE/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
find $NDK_BASE/ -type f -executable -exec chmod a+x -- {} +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue