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
1 year, 8 months ago
1 changed file(s) with
2 addition(s)
and
2 deletion(s)
.
Raw diff
Collapse all
Expand all
+2
-2
pnm2ppa.c
less
more
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