diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-30 12:54:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-30 17:32:31 +0100 |
commit | 965e20cb83a238f66183eba9d5081e41acedca9a (patch) | |
tree | 855c4f13186484112a6dffb1923c1095794c2afc | |
parent | bd9c04142ee82c15f134d38b9c31cbb124175b8d (diff) | |
download | tizen-distro-965e20cb83a238f66183eba9d5081e41acedca9a.tar.gz tizen-distro-965e20cb83a238f66183eba9d5081e41acedca9a.tar.bz2 tizen-distro-965e20cb83a238f66183eba9d5081e41acedca9a.zip |
kmod: Remove bashism from recipe
Without this, the installed files get mangled when a dash shell is used.
(From OE-Core rev: 59db7976fa870084af19d880e594b0e94678cf19)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/kmod/kmod_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb index c379a8d142..ad6283ebac 100644 --- a/meta/recipes-kernel/kmod/kmod_git.bb +++ b/meta/recipes-kernel/kmod/kmod_git.bb @@ -23,7 +23,7 @@ do_install_append () { install -dm755 ${D}${base_sbindir} # add symlinks to kmod ln -s ..${base_bindir}/kmod ${D}${base_bindir}/lsmod - for tool in {ins,rm,dep}mod mod{info,probe}; do + for tool in insmod rmmod depmod modinfo modprobe; do ln -s ..${base_bindir}/kmod ${D}${base_sbindir}/${tool} done # configuration directories |