diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-07-11 14:46:57 +0200 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-07-11 14:46:57 +0200 |
commit | 642bd4780a27edb25e1f809074f785a46491c3b4 (patch) | |
tree | 66009c5f11a338ab854b8b94d6ed9fb7b1678236 | |
parent | 9525d099fdccefc0cbd02348a896a928ee4e5cdf (diff) |
Fix bash on install script typo
Change-Id: I12e5367a62d2acba3596ea066cd67363c6fc8626
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
-rw-r--r-- | meta-audio-4a-framework/recipes-multimedia/4a-hal-generic/4a-hal-generic_git.bb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/meta-audio-4a-framework/recipes-multimedia/4a-hal-generic/4a-hal-generic_git.bb b/meta-audio-4a-framework/recipes-multimedia/4a-hal-generic/4a-hal-generic_git.bb index 7cc5ba47..97dae65a 100644 --- a/meta-audio-4a-framework/recipes-multimedia/4a-hal-generic/4a-hal-generic_git.bb +++ b/meta-audio-4a-framework/recipes-multimedia/4a-hal-generic/4a-hal-generic_git.bb @@ -36,16 +36,16 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" ### TODO: this list should be completed for more machines do_install_append () { - # get pkgdir - note that '4a-hal' comes from project ${project_git_repo}/conf.d/cmake/config.cmake - PKGDIR=${D}/${INSTALL_PREFIX}/4a-hal - - # move all config files to a 'available' dir - mv $PKGDIR/etc $PKGDIR/etc.available - - # then install only required hals files in the etc folder - mkdir -p $PKGDIR/etc - for x in ${4A_HAL_LIST}; do - hal=hal-4a-$x.json - mv -v $PKGDIR/etc.available/${hal}.json $PKGDIR/etc/ - done + # get pkgdir - note that '4a-hal' comes from project ${project_git_repo}/conf.d/cmake/config.cmake + PKGDIR=${D}/${INSTALL_PREFIX}/4a-hal + + # move all config files to a 'available' dir + mv $PKGDIR/etc $PKGDIR/etc.available + + # then install only required hals files in the etc folder + mkdir -p $PKGDIR/etc + for x in ${4A_HAL_LIST}; do + hal=hal-4a-$x.json + mv -v $PKGDIR/etc.available/${hal} $PKGDIR/etc/ + done } |