mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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. (From OE-Core rev: 07db5222a970e40bff51c5df793f0021b0e2aba8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -138,7 +138,8 @@ ACLOCALDIR = "${B}/aclocal-copy"
|
||||
python autotools_copy_aclocals () {
|
||||
s = d.getVar("S", True)
|
||||
if not os.path.exists(s + "/configure.in") and not os.path.exists(s + "/configure.ac"):
|
||||
return
|
||||
if not d.getVar("AUTOTOOLS_COPYACLOCAL"):
|
||||
return
|
||||
|
||||
taskdepdata = d.getVar("BB_TASKDEPDATA", False)
|
||||
pn = d.getVar("PN", True)
|
||||
|
||||
Reference in New Issue
Block a user