Files
openldap2_6/reproducible.patch
2026-01-16 12:39:29 +01:00

28 lines
907 B
Diff

From b00aa689a887852fc48567a0fb94ea7478d6dbd5 Mon Sep 17 00:00:00 2001
From: "Bernhard M. Wiedemann" <bwiedemann@suse.de>
Date: Thu, 8 Jan 2026 10:46:25 +0100
Subject: [PATCH] Drop build time from generated file
to make builds reproducible.
See https://reproducible-builds.org/ for why this is good.
---
include/Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/Makefile.in b/include/Makefile.in
index d40e1cdd4a..9a7d6dcf44 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -39,7 +39,7 @@ LDAP_CONFIG=$(srcdir)/ldap_config.hin
ldap_config.h: $(LDAP_CONFIG) Makefile
@$(RM) $@
@echo "Making $@"
- @echo "/* Generated from $(LDAP_CONFIG) on `date` */" > $@; \
+ @echo "/* Generated from $(LDAP_CONFIG) */" > $@; \
if test $(PLAT) = NT; then \
sysconfdir=`cygpath -w $(sysconfdir) | \
$(SED) -e 's/\\\\/\\\\\\\\\\\\\\\\/g'`; \
--
2.52.0