Drop usage of __DATE__ and __TIME__, hindering build
reproducibility.
Last-Update: 2016-02-26
Gbp-Pq: Name 0004-Drop-usage-of-__DATE__-and-__TIME__-hindering-build.patch
Didier Raboud
2 years ago
731 | 731 |
|
732 | 732 |
case 2:
|
733 | 733 |
/* --version (output to stderr, not syslog) */
|
734 | |
fprintf(stderr,"%s %s %s %s %s\n",
|
|
734 |
fprintf(stderr,"%s %s %s\n",
|
735 | 735 |
*argv, gMessages[LOG_VERSION],
|
736 | |
VERSION, __DATE__, __TIME__);
|
|
736 |
VERSION);
|
737 | 737 |
exit (0);
|
738 | 738 |
break;
|
739 | 739 |
|