* [PATCH] waf.bbclass: correct the searching patch of waf
@ 2018-05-25 3:09 Yue Tao
2018-05-25 3:46 ` Joshua Watt
0 siblings, 1 reply; 3+ messages in thread
From: Yue Tao @ 2018-05-25 3:09 UTC (permalink / raw)
To: openembedded-core; +Cc: yue.tao
The waf is localed at ${S}/buildtools/bin/, not ${S}. Update the
subsrcdir to look for the right path. The WARNINGs below can be fixed
by the fix.
WARNING: lib32-libtalloc-2.1.9-r0 do_configure: Unable to execute waf --version, exit code 127. Assuming waf version without bindir/libdir support.
WARNING: lib32-libtdb-1.3.14-r0 do_configure: Unable to execute waf --version, exit code 127. Assuming waf version without bindir/libdir support.
WARNING: lib32-libtevent-0.9.31-r0 do_configure: Unable to execute waf --version, exit code 127. Assuming waf version without bindir/libdir support.
WARNING: lib32-libldb-1.1.29-r0 do_configure: Unable to execute waf --version, exit code 127. Assuming waf version without bindir/libdir support.
WARNING: lib32-samba-4.6.7-r0 do_configure: Unable to execute waf --version, exit code 127. Assuming waf version without bindir/libdir support.
Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
---
meta/classes/waf.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/waf.bbclass b/meta/classes/waf.bbclass
index 19e93761b3..f8e66835fb 100644
--- a/meta/classes/waf.bbclass
+++ b/meta/classes/waf.bbclass
@@ -7,7 +7,7 @@ python waf_preconfigure() {
import subprocess
from distutils.version import StrictVersion
subsrcdir = d.getVar('S')
- wafbin = os.path.join(subsrcdir, 'waf')
+ wafbin = os.path.join(subsrcdir + '/buildtools/bin/', 'waf')
try:
result = subprocess.check_output([wafbin, '--version'], cwd=subsrcdir, stderr=subprocess.STDOUT)
version = result.decode('utf-8').split()[1]
--
2.17.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] waf.bbclass: correct the searching patch of waf
2018-05-25 3:09 [PATCH] waf.bbclass: correct the searching patch of waf Yue Tao
@ 2018-05-25 3:46 ` Joshua Watt
2018-05-25 10:33 ` yue.tao
0 siblings, 1 reply; 3+ messages in thread
From: Joshua Watt @ 2018-05-25 3:46 UTC (permalink / raw)
To: Yue Tao; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 2356 bytes --]
On Thu, May 24, 2018, 22:10 Yue Tao <Yue.Tao@windriver.com> wrote:
> The waf is localed at ${S}/buildtools/bin/, not ${S}. Update the
> subsrcdir to look for the right path. The WARNINGs below can be fixed
> by the fix.
>
> WARNING: lib32-libtalloc-2.1.9-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-libtdb-1.3.14-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-libtevent-0.9.31-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-libldb-1.1.29-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-samba-4.6.7-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
>
> Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
> ---
> meta/classes/waf.bbclass | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/classes/waf.bbclass b/meta/classes/waf.bbclass
> index 19e93761b3..f8e66835fb 100644
> --- a/meta/classes/waf.bbclass
> +++ b/meta/classes/waf.bbclass
> @@ -7,7 +7,7 @@ python waf_preconfigure() {
> import subprocess
> from distutils.version import StrictVersion
> subsrcdir = d.getVar('S')
> - wafbin = os.path.join(subsrcdir, 'waf')
> + wafbin = os.path.join(subsrcdir + '/buildtools/bin/', 'waf')
>
NACK. ${S}/waf is the "standard" location for waf, if your recipe has it in
a different location, you need to parameterize it. Probably something like:
WAF ?= "${S}/waf"
However, I thought these recipes were inheriting from waf-samba.bbclass
which already does the right thing. Perhaps you have an outdated version of
meta-oe?
try:
> result = subprocess.check_output([wafbin, '--version'],
> cwd=subsrcdir, stderr=subprocess.STDOUT)
> version = result.decode('utf-8').split()[1]
> --
> 2.17.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
[-- Attachment #2: Type: text/html, Size: 3374 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] waf.bbclass: correct the searching patch of waf
2018-05-25 3:46 ` Joshua Watt
@ 2018-05-25 10:33 ` yue.tao
0 siblings, 0 replies; 3+ messages in thread
From: yue.tao @ 2018-05-25 10:33 UTC (permalink / raw)
To: Joshua Watt; +Cc: OE-core
You're correct. After updating the last commit of meta-oe, the commit
below has already fixed this issue. Thank Watt.
commit 29e280ee11c9a6f13c004ff25299668e4616f275
Author: Joshua Watt <jpewhacker@gmail.com>
Date: Mon Feb 12 10:20:41 2018 -0600
waf-samba.bbclass: No longer inherit waf.bbclass
waf-samba.bbclass uses waf in a very different way than the "standard"
method that waf.bbclass targets and ends getting very little useful
functionality from that class.
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Thanks,
yue.tao
On 2018年05月25日 11:46, Joshua Watt wrote:
>
>
> On Thu, May 24, 2018, 22:10 Yue Tao <Yue.Tao@windriver.com
> <mailto:Yue.Tao@windriver.com>> wrote:
>
> The waf is localed at ${S}/buildtools/bin/, not ${S}. Update the
> subsrcdir to look for the right path. The WARNINGs below can be fixed
> by the fix.
>
> WARNING: lib32-libtalloc-2.1.9-r0 do_configure: Unable to execute
> waf --version, exit code 127. Assuming waf version without
> bindir/libdir support.
> WARNING: lib32-libtdb-1.3.14-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-libtevent-0.9.31-r0 do_configure: Unable to execute
> waf --version, exit code 127. Assuming waf version without
> bindir/libdir support.
> WARNING: lib32-libldb-1.1.29-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
> WARNING: lib32-samba-4.6.7-r0 do_configure: Unable to execute waf
> --version, exit code 127. Assuming waf version without bindir/libdir
> support.
>
> Signed-off-by: Yue Tao <Yue.Tao@windriver.com
> <mailto:Yue.Tao@windriver.com>>
> ---
> meta/classes/waf.bbclass | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/classes/waf.bbclass b/meta/classes/waf.bbclass
> index 19e93761b3..f8e66835fb 100644
> --- a/meta/classes/waf.bbclass
> +++ b/meta/classes/waf.bbclass
> @@ -7,7 +7,7 @@ python waf_preconfigure() {
> import subprocess
> from distutils.version import StrictVersion
> subsrcdir = d.getVar('S')
> - wafbin = os.path.join(subsrcdir, 'waf')
> + wafbin = os.path.join(subsrcdir + '/buildtools/bin/', 'waf')
>
>
> NACK. ${S}/waf is the "standard" location for waf, if your recipe has it
> in a different location, you need to parameterize it. Probably something
> like:
>
> WAF ?= "${S}/waf"
>
> However, I thought these recipes were inheriting from waf-samba.bbclass
> which already does the right thing. Perhaps you have an outdated version
> of meta-oe?
>
> try:
> result = subprocess.check_output([wafbin, '--version'],
> cwd=subsrcdir, stderr=subprocess.STDOUT)
> version = result.decode('utf-8').split()[1]
> --
> 2.17.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> <mailto:Openembedded-core@lists.openembedded.org>
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-05-25 10:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-25 3:09 [PATCH] waf.bbclass: correct the searching patch of waf Yue Tao
2018-05-25 3:46 ` Joshua Watt
2018-05-25 10:33 ` yue.tao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox