mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-31 12:52:11 +00:00
- See https://github.com/termux/termux-packages/pull/24215#issuecomment-2788227037 - Replaces all instances of `export PATH="$TERMUX_PREFIX/opt/libwayland/cross/bin:$PATH"` and `wayland-scanner` patches in reverse dependencies with `termux_setup_wayland_cross_pkg_config_wrapper` - Some packages were working because they were using `/usr/bin/wayland-scanner`, this changes all of them to use `$PREFIX/opt/libwayland/cross/bin/wayland-scanner` instead [no ci]
12 lines
408 B
Diff
12 lines
408 B
Diff
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -36,7 +36,7 @@
|
|
gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))
|
|
|
|
git = find_program('git', required: false, native: true)
|
|
-scdoc = find_program('scdoc', required: get_option('man-pages'), native: true)
|
|
+scdoc = find_program('scdoc', required: get_option('man-pages'))
|
|
|
|
version = '"@0@"'.format(meson.project_version())
|
|
if git.found()
|