Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix use of deprecated Meson methods #113

Closed
wants to merge 2 commits into from

Commits on Aug 2, 2023

  1. pylibtfdt: fix use of deprecated meson method

    Fixes the following warning
    
    > pylibfdt/meson.build:2: WARNING: Project targets '>=0.56.0' but uses
      feature deprecated since '0.55.0': ExternalProgram.path. use
      ExternalProgram.full_path() instead
    
    Do not use full_path() as suggested. setup_py is being called as a
    command by custom_target() which understands how to properly inherit the
    object returned by find_program().
    
    Signed-off-by: Brandon Maier <[email protected]>
    blmaier committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    163f72f View commit details
    Browse the repository at this point in the history
  2. tests: fix use of deprecated meson methods

    Fixes the following warnings
    
    > tests/meson.build:123: WARNING: Project targets '>=0.56.0' but uses
      feature deprecated since '0.55.0': ExternalProgram.path. use
      ExternalProgram.full_path() instead
    > tests/meson.build:124: WARNING: Project targets '>=0.56.0' but uses
      feature deprecated since '0.56.0': meson.source_root. use
      meson.project_source_root() or meson.global_source_root() instead.
    
    Signed-off-by: Brandon Maier <[email protected]>
    blmaier committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    e85e379 View commit details
    Browse the repository at this point in the history