summaryrefslogtreecommitdiffstats
path: root/recipes-append/bash/bash_4.2.bbappend
blob: 0b5ad7fe5450fd8f34e4fd44927694aef54a1afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Fixup for broken ENEA environment with bash under /usr/bin/bash
# RPM nativesdk packaging breaks for meta-toolchain without this append.

FILES_${PN} += "${base_bindir}/* ${exec_prefix}/bin/*"

do_install_append () {
	mkdir -p ${D}/usr/bin
	cd ${D}/usr/bin && ln -sf /bin/bash bash
}

BBCLASSEXTEND = "native nativesdk"