diff options
author | Paul Barker <paul@paulbarker.me.uk> | 2014-12-21 22:11:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-24 17:48:57 +0000 |
commit | dfc99740bd3530baead1703b3a772b17a1c58acc (patch) | |
tree | b17a3b21575358bb50640a9d745c087dbb835827 /meta/recipes-devtools/opkg | |
parent | 98a251b8fea5ba329c898d2159dd470d53c6c783 (diff) | |
download | openembedded-core-dfc99740bd3530baead1703b3a772b17a1c58acc.tar.gz openembedded-core-dfc99740bd3530baead1703b3a772b17a1c58acc.tar.bz2 openembedded-core-dfc99740bd3530baead1703b3a772b17a1c58acc.zip |
opkg-collateral: Use new lists_dir syntax
Since opkg v0.2.3, it has been possible to use the new syntax for the
'lists_dir' option in an opkg configuration file. From v0.3.0, this new syntax
is required. The new syntax matches the way other options are set.
Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg-collateral.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/opkg/opkg-collateral.bb b/meta/recipes-devtools/opkg/opkg-collateral.bb index b121827ac7..3825ffb064 100644 --- a/meta/recipes-devtools/opkg/opkg-collateral.bb +++ b/meta/recipes-devtools/opkg/opkg-collateral.bb @@ -13,7 +13,7 @@ do_compile () { cat ${WORKDIR}/opkg.conf.comments >${WORKDIR}/opkg.conf cat ${WORKDIR}/src >>${WORKDIR}/opkg.conf cat ${WORKDIR}/dest >>${WORKDIR}/opkg.conf - echo "lists_dir ext ${OPKGLIBDIR}/opkg" >>${WORKDIR}/opkg.conf + echo "option lists_dir ${OPKGLIBDIR}/opkg" >>${WORKDIR}/opkg.conf } do_install () { |