You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
746 B

  1. --- a/meson.build
  2. +++ b/meson.build
  3. @@ -2220,16 +2220,10 @@ endif
  4. glib_conf.set('HAVE_PROC_SELF_CMDLINE', have_proc_self_cmdline)
  5. -python = import('python').find_installation('python3')
  6. +python = 'python3'
  7. # used for '#!/usr/bin/env <name>'
  8. python_name = 'python3'
  9. -python_version = python.language_version()
  10. -python_version_req = '>=3.5'
  11. -if not python_version.version_compare(python_version_req)
  12. - error('Requires Python @0@, @1@ found.'.format(python_version_req, python_version))
  13. -endif
  14. -
  15. # Determine which user environment-dependent files that we want to install
  16. have_bash = find_program('bash', required : false).found() # For completion scripts
  17. bash_comp_dep = dependency('bash-completion', version: '>=2.0', required: false)