From: Mathieu Parent Date: Thu, 11 Jan 2018 20:18:46 +0000 (+0100) Subject: waf: Remove build system info (uname -a) X-Git-Tag: samba-4.8.0rc1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e131ce4ddc074dc146c81edb99a203d1dd2883b8;p=thirdparty%2Fsamba.git waf: Remove build system info (uname -a) Preventing reproducible builds while adding minor benefit. More information at . BUG: https://bugzilla.samba.org/show_bug.cgi?id=13213 Signed-off-by: Mathieu Parent Reviewed-by: Andreas Schneider Reviewed-by: Andrew Bartlet --- diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 430d164b60d..3b36b57051e 100644 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -313,10 +313,6 @@ def configure(conf): conf.env.GIT_LOCAL_CHANGES = Options.options.GIT_LOCAL_CHANGES - conf.CHECK_COMMAND(['uname', '-a'], - msg='Checking build system', - define='BUILD_SYSTEM', - on_target=False) conf.CHECK_UNAME() # see if we can compile and run a simple C program diff --git a/source4/smbd/server.c b/source4/smbd/server.c index adee3887d98..431fbad3139 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -323,9 +323,6 @@ static void show_build(void) printf("Samba version: %s\n", SAMBA_VERSION_STRING); printf("Build environment:\n"); -#ifdef BUILD_SYSTEM - printf(" Build host: %s\n", BUILD_SYSTEM); -#endif printf("Paths:\n"); for (i=0; config_options[i].name; i++) {