diff options
| -rw-r--r-- | remote/modules/vmplayer/vmplayer.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remote/modules/vmplayer/vmplayer.build b/remote/modules/vmplayer/vmplayer.build index a51b87d7..716bf3e3 100644 --- a/remote/modules/vmplayer/vmplayer.build +++ b/remote/modules/vmplayer/vmplayer.build @@ -33,6 +33,10 @@ build() { chmod +x "$TARGET"/bin/* chmod +x "$MODULE_BUILD_DIR"/usr/{bin,sbin}/* chmod +x "$TARGET"/lib/*.sh + find "$MODULE_BUILD_DIR" -name '*.sh' -exec chmod +x {} \; + for file in $(grep -rl -E "^#!/" "$MODULE_BUILD_DIR"); do + chmod +x "$file" + done pinfo "Patching LIBCONF_DIR" local file="" for file in $(grep -rl "@@LIBCONF_DIR@@" "$MODULE_BUILD_DIR"); do |
