blob: 9ee20e0d09891988893055eee1be519d1869995f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#
do_install[postfuncs] += "install_relative_symlinks"
python install_relative_symlinks () {
oe.path.replace_absolute_symlinks(d.getVar('D'), d)
}
|