0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-05-10 06:55:47 +00:00
Files
termux-packages/x11-packages/xfce4-panel/0001-workaround-xfce-dev-tools.patch
Biswapriyo Nath cb9fd89799 bump(x11/xfce4-panel): 4.20.4
Add workaround for the following autotools error.
configure: error: Could not find xdt-gen-visibility in PATH, please install xfce4-dev-tools
2025-03-24 14:22:26 +05:30

18 lines
725 B
Diff

# XDT_GEN_VISIBILITY has termux python in shebang. This patch overrides that to use host python.
--- a/libxfce4panel/Makefile.am
+++ b/libxfce4panel/Makefile.am
@@ -85,10 +85,10 @@
&& glib-genmarshal --prefix=_libxfce4panel_marshal --body $< >> $@
libxfce4panel-visibility.h: libxfce4panel.symbols Makefile
- $(AM_V_GEN) $(XDT_GEN_VISIBILITY) --kind=header $< $@
+ $(AM_V_GEN) python $(XDT_GEN_VISIBILITY) --kind=header $< $@
libxfce4panel-visibility.c: libxfce4panel.symbols Makefile
- $(AM_V_GEN) $(XDT_GEN_VISIBILITY) --kind=source $< $@
+ $(AM_V_GEN) python $(XDT_GEN_VISIBILITY) --kind=source $< $@
libxfce4panel-enum-types.h: $(libxfce4panel_headers) Makefile
$(AM_V_GEN) ( cd $(srcdir) && glib-mkenums \