DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms
@ 2018-07-20 14:13 Bruce Richardson
  2018-07-26  8:17 ` Thomas Monjalon
  2018-07-26  8:18 ` Thomas Monjalon
  0 siblings, 2 replies; 3+ messages in thread
From: Bruce Richardson @ 2018-07-20 14:13 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

When building with meson on e.g. cygwin, the error message about an
unsupported platform referenced an unknown variable since
"host_machine" was missing an "_".

Fixes: 844514c73569 ("eal: build with meson")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_eal/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_eal/meson.build b/lib/librte_eal/meson.build
index 259bb4464..98174476c 100644
--- a/lib/librte_eal/meson.build
+++ b/lib/librte_eal/meson.build
@@ -18,7 +18,7 @@ elif host_machine.system() == 'freebsd'
 	subdir('bsdapp/eal')
 
 else
-	error('unsupported system type @0@'.format(hostmachine.system()))
+	error('unsupported system type "@0@"'.format(host_machine.system()))
 endif
 
 version = 7  # the version of the EAL API
-- 
2.17.0

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms
  2018-07-20 14:13 [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms Bruce Richardson
@ 2018-07-26  8:17 ` Thomas Monjalon
  2018-07-26  8:18 ` Thomas Monjalon
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2018-07-26  8:17 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

20/07/2018 16:13, Bruce Richardson:
> When building with meson on e.g. cygwin, the error message about an
> unsupported platform referenced an unknown variable since
> "host_machine" was missing an "_".
> 
> Fixes: 844514c73569 ("eal: build with meson")
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms
  2018-07-20 14:13 [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms Bruce Richardson
  2018-07-26  8:17 ` Thomas Monjalon
@ 2018-07-26  8:18 ` Thomas Monjalon
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2018-07-26  8:18 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

20/07/2018 16:13, Bruce Richardson:
> When building with meson on e.g. cygwin, the error message about an
> unsupported platform referenced an unknown variable since
> "host_machine" was missing an "_".
> 
> Fixes: 844514c73569 ("eal: build with meson")
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-26  8:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-20 14:13 [dpdk-dev] [PATCH] eal: fix error message for unsupported platforms Bruce Richardson
2018-07-26  8:17 ` Thomas Monjalon
2018-07-26  8:18 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).