summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@reproducible-builds.org>2022-09-27 21:05:55 +0000
committerVagrant Cascadian <vagrant@reproducible-builds.org>2023-12-19 16:09:24 -0800
commit4eff64636ff1acdf1b211ae89af3b2cf07ff4df0 (patch)
tree9338ce9e92a542a17ef56288f6e96423aaf5dc60
parent123e7ed67396a3a480694c1219c9d7e4c5da6840 (diff)
dustmite.d: Avoid embedding timezone and locale-specific build date in
the binary. (Closes: #1020879) https://reproducible-builds.org/docs/timestamps/
-rw-r--r--dustmite.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/dustmite.d b/dustmite.d
index 3177cbe..918f49e 100644
--- a/dustmite.d
+++ b/dustmite.d
@@ -209,7 +209,7 @@ int main(string[] args)
enum source = import("source");
else
enum source = "upstream";
- stdout.writeln("DustMite build ", __DATE__, " (", source, "), built with ", __VENDOR__, " ", __VERSION__);
+ stdout.writeln("DustMite build (", source, "), built with ", __VENDOR__, " ", __VERSION__);
if (args.length == 1)
return 0;
}