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:24:36 +0100 |
commit | 59db7976fa870084af19d880e594b0e94678cf19 (patch) | |
tree | c43cdd5670c8b7d8d157dde7675f7ed90f31635a /meta/recipes-kernel/kmod/kmod_git.bb | |
parent | ecea2fab2063a3c478a63e62ba0e80305674c5e0 (diff) | |
download | openembedded-core-59db7976fa870084af19d880e594b0e94678cf19.tar.gz openembedded-core-59db7976fa870084af19d880e594b0e94678cf19.tar.bz2 openembedded-core-59db7976fa870084af19d880e594b0e94678cf19.zip |
kmod: Remove bashism from recipe
Without this, the installed files get mangled when a dash shell is used.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kmod/kmod_git.bb')
-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 |