mirror of
https://github.com/termux/termux-packages.git
synced 2025-05-10 06:55:47 +00:00
Add workaround for the following autotools error. configure: error: Could not find xdt-gen-visibility in PATH, please install xfce4-dev-tools
18 lines
725 B
Diff
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 \
|