Hello,

> - This won't be reproducible as $username is not fixed too.
Right.

> - I don't think always setting "hostname" to "localhost" is right.
>   Feels wrong.
Ok, you right. The better is to remove information

>
> Why not follow my previous suggestion of wrapping the:
>
>      AC_DEFINE_UNQUOTED([STRESSAPPTEST_TIMESTAMP],
>
> when SOURCE_DATE_EPOCH is set?
Something like that:

-AC_DEFINE_UNQUOTED([STRESSAPPTEST_TIMESTAMP],
+if test -n "$SOURCE_DATE_EPOCH"; then
+  AC_DEFINE(STRESSAPPTEST_TIMESTAMP,"")
+else
+  AC_DEFINE_UNQUOTED([STRESSAPPTEST_TIMESTAMP],
                    "$username @ $hostname on $timestamp",
                    [Timestamp when ./configure was executed])
+fi
+

Regards

Reply via email to