| Patrick Williams | e0d4ebc | 2020-02-25 10:52:39 -0600 | [diff] [blame] | 1 | # python-mako installs /usr/bin/mako-render for both python2 and python3, |
| 2 | # which causes a bitbake QA failure. Remove it from installation for the | ||||
| 3 | # native target to avoid the collision. | ||||
| 4 | # | ||||
| 5 | # We don't currently use this as a target package and if we did, we shouldn't | ||||
| 6 | # install both python2 and python3 variants. | ||||
| 7 | # | ||||
| 8 | # Once we are done with python2, we can delete this. | ||||
| 9 | |||||
| 10 | do_install_append_class-native() { | ||||
| 11 | rm ${D}${bindir}/mako-render | ||||
| 12 | } | ||||