0001-gst-python-fix-build-on-systems-without-C-compiler.patch 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From 26c2385faed0bb997368daabd4c64207b3fc01ca Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Fri, 15 Apr 2022 18:58:49 +0200
  4. Subject: [PATCH] gst-python: fix build on systems without C++ compiler
  5. Fix the following build failure on systems without C++ compiler:
  6. The following exception(s) were encountered:
  7. Running "/home/autobuild/autobuild/instance-0/output-1/host/bin/i686-buildroot-linux-gnu-g++ --version" gave "[Errno 2] No such file or directory: '/home/autobuild/autobuild/instance-0/output-1/host/bin/i686-buildroot-linux-gnu-g++'"
  8. Fixes:
  9. - http://autobuild.buildroot.org/results/eebf65036f79d21d347714d62afecd0108393308
  10. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2200>
  11. [Retrieved (and backported) from:
  12. https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/26c2385faed0bb997368daabd4c64207b3fc01ca]
  13. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  14. ---
  15. subprojects/gst-python/meson.build | 2 +-
  16. 1 file changed, 1 insertion(+), 1 deletion(-)
  17. diff --git a/meson.build b/meson.build
  18. index 1462604b297..c28df16192a 100644
  19. --- a/meson.build
  20. +++ b/meson.build
  21. @@ -1,4 +1,4 @@
  22. -project('gst-python', 'c', 'cpp',
  23. +project('gst-python', 'c',
  24. version : '1.20.1',
  25. meson_version : '>= 0.60',
  26. default_options : [ 'warning_level=1',
  27. --
  28. GitLab