1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: make build reproducible by not logging the build time
.
In Debian, fpc is patched to honor the SOURCE_DATE_EPOCH for %date%, but not
yet for %time%. Until that happens, just strip out the build time, it's
mostly useless anyways.
Author: Paul Gevers <elbrus@debian.org>
Forwarded: no
Index: lazarus/ide/lazarus.pp
===================================================================
--- lazarus.orig/ide/lazarus.pp
+++ lazarus/ide/lazarus.pp
@@ -107,7 +107,6 @@ begin
LazarusRevisionStr:=RevisionStr;
LazarusBuildDateStr:={$I %date%};
- LazarusBuildTimeStr:={$I %time%};
{$IFDEF EnableWriteLazRev}
writeln('[20180608074905] lazarus.pp ide/revision.inc: ',LazarusRevisionStr);
{$ENDIF}
|