oelint.vars.pythonpnusage

March 17, 2024 ยท View on GitHub

severity: info

Example

A = "${PYTHON_PN}"

Why is this bad?

${PYTHON_PN} was marked deprecated from scarthgap release.

Ways to fix it

Use python3 instead

A = "python3"

Contents

  1. 1Example
  2. 2Why is this bad?
  3. 3Ways to fix it