You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
820 B

  1. From: Tomasz Buchert <tomasz@debian.org>
  2. Date: Fri, 6 Feb 2015 11:33:20 +0100
  3. Subject: Fix reproducibility issues
  4. We replace unreproducible CC macros with
  5. N/A placeholders. This fixes #776716.
  6. ---
  7. src/main.c | 6 +++---
  8. 1 file changed, 3 insertions(+), 3 deletions(-)
  9. --- a/src/main.c
  10. +++ b/src/main.c
  11. @@ -92,10 +92,11 @@ miredo_version (void)
  12. #ifndef VERSION
  13. # define VERSION "unknown version"
  14. #endif
  15. + const char* UNKNOWN = "N/A";
  16. printf (_("Miredo: Teredo IPv6 tunneling software %s (%s)\n"
  17. " built %s on %s (%s)\n"),
  18. - VERSION, PACKAGE_HOST, __DATE__,
  19. - PACKAGE_BUILD_HOSTNAME, PACKAGE_BUILD);
  20. + VERSION, UNKNOWN, UNKNOWN,
  21. + UNKNOWN, UNKNOWN);
  22. printf (_("Configured with: %s\n"), PACKAGE_CONFIGURE_INVOCATION);
  23. puts (_("Written by Remi Denis-Courmont.\n"));