diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-01-12 19:08:51 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:06:45 +0000 |
commit | af92ac8ef84a689a9c22dce6b06e5e813dce88dc (patch) | |
tree | 31d7fc548931a861bec1a0b6815477308aab6ff3 /meta/recipes-multimedia | |
parent | facdfe967e77e949555b882228e109f4280c5e3c (diff) | |
download | openembedded-core-af92ac8ef84a689a9c22dce6b06e5e813dce88dc.tar.gz openembedded-core-af92ac8ef84a689a9c22dce6b06e5e813dce88dc.tar.bz2 openembedded-core-af92ac8ef84a689a9c22dce6b06e5e813dce88dc.zip |
alsa-utils: fix B != S
And bump the PR to avoid:
configure: error: source directory already configured; run "make distclean" there first
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb | 2 | ||||
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils_1.0.28.bb | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb b/meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb index 968c81ee2b..2d49cc5622 100644 --- a/meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb +++ b/meta/recipes-multimedia/alsa/alsa-utils-alsaconf_1.0.28.bb @@ -13,5 +13,5 @@ S = "${WORKDIR}/alsa-utils-${PV}" do_install() { install -d ${D}${sbindir} - install -m 0755 ${S}/alsaconf/alsaconf ${D}${sbindir}/ + install -m 0755 ${B}/alsaconf/alsaconf ${D}${sbindir}/ } diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.0.28.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.0.28.bb index 5f35d76a6e..ac5512a7df 100644 --- a/meta/recipes-multimedia/alsa/alsa-utils_1.0.28.bb +++ b/meta/recipes-multimedia/alsa/alsa-utils_1.0.28.bb @@ -25,7 +25,9 @@ SRC_URI[sha256sum] = "f3ff4c89b0125a7797b1b13cd094cc92276e655458274967386e812d03 # EXTRA_OECONF_append_libc-uclibc = " --disable-nls" -inherit autotools-brokensep gettext pkgconfig +PR = "r1" + +inherit autotools gettext pkgconfig # This are all packages that we need to make. Also, the now empty alsa-utils # ipk depends on them. |