diff mbox

dstat: propagate python dependencies

Message ID 1414769654-20569-1-git-send-email-jezz@sysmic.org
State Accepted
Headers show

Commit Message

Jérôme Pouiller Oct. 31, 2014, 3:34 p.m. UTC
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
---
 package/dstat/Config.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Thomas Petazzoni Nov. 1, 2014, 2:03 p.m. UTC | #1
Dear Jérôme Pouiller,

On Fri, 31 Oct 2014 16:34:14 +0100, Jérôme Pouiller wrote:
> Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
> ---
>  package/dstat/Config.in | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/package/dstat/Config.in b/package/dstat/Config.in
> index 62a392a..52fbb49 100644
> --- a/package/dstat/Config.in
> +++ b/package/dstat/Config.in
> @@ -2,6 +2,7 @@ config BR2_PACKAGE_DSTAT
>  	bool "dstat"
>  	depends on BR2_USE_WCHAR # python
>  	depends on BR2_USE_MMU # python
> +	depends on BR2_TOOLCHAIN_HAS_THREADS # python
>  	select BR2_PACKAGE_PYTHON
>  	help
>  	  Dstat, written in Python, is a versatile replacement for vmstat,
> @@ -22,4 +23,4 @@ config BR2_PACKAGE_DSTAT
>  
>  comment "dstat needs a toolchain w/ wchar"

You forgot to update the comment here regarding the new thread
dependency.

Committed with this fixed, thanks!

Thomas
diff mbox

Patch

diff --git a/package/dstat/Config.in b/package/dstat/Config.in
index 62a392a..52fbb49 100644
--- a/package/dstat/Config.in
+++ b/package/dstat/Config.in
@@ -2,6 +2,7 @@  config BR2_PACKAGE_DSTAT
 	bool "dstat"
 	depends on BR2_USE_WCHAR # python
 	depends on BR2_USE_MMU # python
+	depends on BR2_TOOLCHAIN_HAS_THREADS # python
 	select BR2_PACKAGE_PYTHON
 	help
 	  Dstat, written in Python, is a versatile replacement for vmstat,
@@ -22,4 +23,4 @@  config BR2_PACKAGE_DSTAT
 
 comment "dstat needs a toolchain w/ wchar"
 	depends on BR2_USE_MMU
-	depends on !BR2_USE_WCHAR
+	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS