You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by ro...@apache.org on 2020/12/29 13:39:19 UTC

[buildstream] 05/17: meson: Print message before setuptools check

This is an automated email from the ASF dual-hosted git repository.

root pushed a commit to branch sam/meson
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 48cf26d8d1e51f5e722f24b72de9aefd453b3720
Author: Sam Thursfield <sa...@codethink.co.uk>
AuthorDate: Thu Dec 14 17:59:41 2017 +0000

    meson: Print message before setuptools check
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index e4f8f9b..f7649fb 100644
--- a/meson.build
+++ b/meson.build
@@ -32,7 +32,7 @@ endif
 
 # FIXME: We check manually for our Python dependencies as Meson doesn't
 # support doing so yet. See https://github.com/mesonbuild/meson/issues/2377
-
+message('Checking for setuptools (for pkg_resources)')
 setuptools_check = run_command(python, '-c', 'import pkg_resources')
 if setuptools_check.returncode() != 0
   error('Python Setuptools was not found; the pkg_resources module is required.\n' +