mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-06-21 08:52:27 +02:00
7 lines
209 B
Plaintext
7 lines
209 B
Plaintext
do_install:append:tcmode-external () {
|
|
install -d ${D}${bindir}/gcc
|
|
for i in ${D}${bindir}/${TARGET_PREFIX}*; do
|
|
ln -s ../$(basename "$i") ${D}${bindir}/gcc/${i##*/${TARGET_PREFIX}}
|
|
done
|
|
}
|