diff options
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 01e49c98bf..b645996136 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -138,7 +138,8 @@ ACLOCALDIR = "${B}/aclocal-copy" | |||
138 | python autotools_copy_aclocals () { | 138 | python autotools_copy_aclocals () { |
139 | s = d.getVar("S", True) | 139 | s = d.getVar("S", True) |
140 | if not os.path.exists(s + "/configure.in") and not os.path.exists(s + "/configure.ac"): | 140 | if not os.path.exists(s + "/configure.in") and not os.path.exists(s + "/configure.ac"): |
141 | return | 141 | if not d.getVar("AUTOTOOLS_COPYACLOCAL"): |
142 | return | ||
142 | 143 | ||
143 | taskdepdata = d.getVar("BB_TASKDEPDATA", False) | 144 | taskdepdata = d.getVar("BB_TASKDEPDATA", False) |
144 | pn = d.getVar("PN", True) | 145 | pn = d.getVar("PN", True) |