aboutsummaryrefslogtreecommitdiff
path: root/ipv6/miredo/patches/004-reproducible.patch
blob: 62bae2a3f9ccb8f5680066c7e10eebd96ae5719a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Tomasz Buchert <tomasz@debian.org>
Date: Fri, 6 Feb 2015 11:33:20 +0100
Subject: Fix reproducibility issues

We replace unreproducible CC macros with
N/A placeholders. This fixes #776716.
---
 src/main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- a/src/main.c
+++ b/src/main.c
@@ -92,10 +92,11 @@ miredo_version (void)
 #ifndef VERSION
 # define VERSION "unknown version"
 #endif
+	const char* UNKNOWN = "N/A";
 	printf (_("Miredo: Teredo IPv6 tunneling software %s (%s)\n"
 	          " built %s on %s (%s)\n"),
-	        VERSION, PACKAGE_HOST, __DATE__,
-	        PACKAGE_BUILD_HOSTNAME, PACKAGE_BUILD);
+	        VERSION, UNKNOWN, UNKNOWN,
+	        UNKNOWN, UNKNOWN);
 	printf (_("Configured with: %s\n"), PACKAGE_CONFIGURE_INVOCATION);
 	puts (_("Written by Remi Denis-Courmont.\n"));