diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2013-12-12 17:36:38 +0100 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2013-12-12 17:36:38 +0100 |
commit | 2a7348129a42f21095fcd62e47a035f78d254130 (patch) | |
tree | 544dc8019a8f8cb684ace8674193605e607f9964 /recipes-append/bash/bash_4.2.bbappend | |
download | meta-enea-master.tar.gz |
Migrated from the internal git server on the dora-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-append/bash/bash_4.2.bbappend')
-rw-r--r-- | recipes-append/bash/bash_4.2.bbappend | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes-append/bash/bash_4.2.bbappend b/recipes-append/bash/bash_4.2.bbappend new file mode 100644 index 0000000..0b5ad7f --- /dev/null +++ b/recipes-append/bash/bash_4.2.bbappend | |||
@@ -0,0 +1,13 @@ | |||
1 | # Fixup for broken ENEA environment with bash under /usr/bin/bash | ||
2 | # RPM nativesdk packaging breaks for meta-toolchain without this append. | ||
3 | |||
4 | FILES_${PN} += "${base_bindir}/* ${exec_prefix}/bin/*" | ||
5 | |||
6 | do_install_append () { | ||
7 | mkdir -p ${D}/usr/bin | ||
8 | cd ${D}/usr/bin && ln -sf /bin/bash bash | ||
9 | } | ||
10 | |||
11 | BBCLASSEXTEND = "native nativesdk" | ||
12 | |||
13 | |||