From 612a34ad69c043e42970e01f2f026dff7dc07728 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 21 Apr 2010 15:35:55 +1000 Subject: s4-server: show build host in samba -b output --- source4/smbd/server.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4') diff --git a/source4/smbd/server.c b/source4/smbd/server.c index 13b56086f4..149421532f 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -263,6 +263,11 @@ static void show_build(void) }; int i; + 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++) { printf(" %s: %s\n", config_options[i].name, config_options[i].value); -- cgit