On Tue, 17 Feb 2015, Uwe Kleine-König wrote: > Having the date and time of compilation is hardly useful and is in the > way for reproducible building binaries. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> > --- > Hello, > > a few people work on getting reproducible builds for Debian. Using > __DATE__ and __TIME__ obviously makes the rt-tests package fail to > compile in a deterministic fashion. > > Best regards > Uwe > > src/pi_tests/pi_stress.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/src/pi_tests/pi_stress.c b/src/pi_tests/pi_stress.c > index e273d62..9b33fad 100644 > --- a/src/pi_tests/pi_stress.c > +++ b/src/pi_tests/pi_stress.c > @@ -1235,7 +1235,6 @@ void process_command_line(int argc, char **argv) > break; > case 'V': > printf("pi_stress v%1.2f ", VERSION_STRING); > - printf("(%s %s)\n", __DATE__, __TIME__); > exit(0); > case 'u': > uniprocessor = 1; > -- > 2.1.4 > > -- This patch is okay with me. Signed-off-by: John Kacur <jkacur@xxxxxxxxxx>>