summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/gst-validate1.in1
-rw-r--r--rules/gst-validate1.make8
2 files changed, 4 insertions, 5 deletions
diff --git a/rules/gst-validate1.in b/rules/gst-validate1.in
index a11da5a6c..0a429e2b6 100644
--- a/rules/gst-validate1.in
+++ b/rules/gst-validate1.in
@@ -8,6 +8,7 @@ menuconfig GST_VALIDATE1
select CAIRO if GST_VALIDATE1_VIDEO
select CAIRO_PNG if GST_VALIDATE1_VIDEO
select PYTHON3 if GST_VALIDATE1_LAUNCHER
+ select PYTHON3_SSL if GST_VALIDATE1_LAUNCHER
prompt "gst-validate "
help
GstValidate is a tool that allows GStreamer developers to check
diff --git a/rules/gst-validate1.make b/rules/gst-validate1.make
index c38d36a1f..41887f014 100644
--- a/rules/gst-validate1.make
+++ b/rules/gst-validate1.make
@@ -108,11 +108,9 @@ ifdef PTXCONF_GST_VALIDATE1_LAUNCHER
@$(call install_copy, gst-validate1, 0, 0, 0755, -, \
/usr/bin/gst-validate-launcher)
- @cd $(GST_VALIDATE1_PKGDIR)/usr/lib/gst-validate-launcher/python && \
- for file in `find launcher/ -name "*.pyc"`; do \
- $(call install_copy, gst-validate1, 0, 0, 0644, -, \
- /usr/lib/gst-validate-launcher/python/$${file}); \
- done
+ # internal magic is broken when .py files are missing
+ $(call install_glob, gst-validate1, 0, 0, -, \
+ /usr/lib/gst-validate-launcher/python,*.py)
endif
@$(call install_finish, gst-validate1)