diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-03 15:49:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-05 15:24:04 +0000 |
commit | 07db5222a970e40bff51c5df793f0021b0e2aba8 (patch) | |
tree | e75500ec080f157c861bcbc16b4c08cc3575a9b2 /meta/recipes-multimedia/alsa | |
parent | 79ea036de331bde65a88fb777647dc099ef05acf (diff) | |
download | openembedded-core-07db5222a970e40bff51c5df793f0021b0e2aba8.tar.gz openembedded-core-07db5222a970e40bff51c5df793f0021b0e2aba8.tar.bz2 openembedded-core-07db5222a970e40bff51c5df793f0021b0e2aba8.zip |
alsa-tools/autotools: Ensure that aclocal files can be present with AUTOTOOLS_COPYACLOCAL variable
Introduce a AUTOTOOLS_COPYACLOCAL variable which forces the copy of the aclocal
files even when a configure.ac/.in file isn't present.
Use this new feature in alsa-tools.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb index 6321b786fc..b1542332de 100644 --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.26.1.bb @@ -25,10 +25,8 @@ EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --targ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}" PACKAGECONFIG[gtk+] = ",,gtk+," -do_configure () { - autotools_do_configure - autotools_copy_aclocal -} +# configure.ac/.in doesn't exist so force copy +AUTOTOOLS_COPYACLOCAL = "1" do_compile_prepend () { #Automake dir is not correctly detected in cross compilation case |