diff options
author | Bernhard M. Wiedemann <bwiedemann@suse.de> | 2017-07-10 18:29:41 +0200 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2017-07-14 18:48:07 +0200 |
commit | 85b10a636e0eeeca0948c6b1d59d2df7b4507d45 (patch) | |
tree | cc2a9d0967887ae29dfaf400f8c7cd1eaf363e5d /buildtools | |
parent | 0ed918ef5276c459d46c9e77c9e9d84bc41d4b14 (diff) | |
download | samba-85b10a636e0eeeca0948c6b1d59d2df7b4507d45.tar.gz |
s3: drop build_env
As a follow up to eedebe2ef1b ("docs-xml: Sort input file list"), this
change enables reproducible builds, without the added complexity of
https://lists.samba.org/archive/samba-technical/2017-June/121302.html
Bug: https://bugzilla.samba.org/show_bug.cgi?id=12906
Signed-off-by: Bernhard M. Wiedemann <bwiedemann@suse.de>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): David Disseldorp <ddiss@samba.org>
Autobuild-Date(master): Fri Jul 14 18:48:08 CEST 2017 on sn-devel-144
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_patterns.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/buildtools/wafsamba/samba_patterns.py b/buildtools/wafsamba/samba_patterns.py index 1baa6019065..e809f26a095 100644 --- a/buildtools/wafsamba/samba_patterns.py +++ b/buildtools/wafsamba/samba_patterns.py @@ -51,7 +51,6 @@ def write_build_options_header(fp): fp.write("*/\n") fp.write("\n") fp.write("#include \"includes.h\"\n") - fp.write("#include \"build_env.h\"\n") fp.write("#include \"dynconfig/dynconfig.h\"\n") fp.write("#include \"lib/cluster_support.h\"\n") @@ -92,19 +91,6 @@ def write_build_options_header(fp): fp.write(" return;\n") fp.write(" }\n") fp.write("\n") - fp.write("#ifdef _BUILD_ENV_H\n") - fp.write(" /* Output information about the build environment */\n") - fp.write(" output(screen,\"Build environment:\\n\");\n") - fp.write(" output(screen,\" Built by: %s@%s\\n\",BUILD_ENV_USER,BUILD_ENV_HOST);\n") - fp.write(" output(screen,\" Built on: %s\\n\",BUILD_ENV_DATE);\n") - fp.write("\n") - fp.write(" output(screen,\" Built using: %s\\n\",BUILD_ENV_COMPILER);\n") - fp.write(" output(screen,\" Build host: %s\\n\",BUILD_ENV_UNAME);\n") - fp.write(" output(screen,\" SRCDIR: %s\\n\",BUILD_ENV_SRCDIR);\n") - fp.write(" output(screen,\" BUILDDIR: %s\\n\",BUILD_ENV_BUILDDIR);\n") - fp.write("\n") - fp.write("\n") - fp.write("#endif\n") fp.write("\n") fp.write(" /* Output various paths to files and directories */\n") fp.write(" output(screen,\"\\nPaths:\\n\");\n") |