Files
termux-packages/packages/pacman/doc-meson.build.patch
termux-pacman-bot 4373a0acbf fix(main/pacman): fix on-device build (#28185)
- `/bin/true` does not exist in Termux, but `$TERMUX_PREFIX/bin/true` is detected in `PATH` if the absolute path is removed like this

%ci:no-build
2026-01-26 12:07:57 +00:00

15 lines
344 B
Diff

Fixes on-device build of
./build-package.sh -I -f pacman
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -101,7 +101,7 @@ foreach page: manpages + sitepages
endforeach
run_target('html',
- command : ['/bin/true'],
+ command : ['true'],
depends : html_targets)
meson.add_install_script(MESON_MAKE_SYMLINK,