mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-04 06:54:36 +02:00
The bash version provided by meta-gplv2 does not provide this file and
as a consequence do_compile will fail with:
sed: can't read support/bash.pc: No such file or directory
Signed-off-by: Frederik Noe-Sdun <Frederik_NoeSdun@mentor.com>
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
6 lines
125 B
Bash
6 lines
125 B
Bash
do_compile_append () {
|
|
if [ -e support/bash.pc ] ; then
|
|
sed -i -e 's#-B${gcc_bindir}##' support/bash.pc
|
|
fi
|
|
}
|