git: 39ab5e3879ed - main - net/urelay: disable date/time nonreproducible build warning

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Fri, 25 Nov 2022 19:18:01 UTC
The branch main has been updated by emaste (doc, src committer):

URL: https://cgit.FreeBSD.org/ports/commit/?id=39ab5e3879edef7f7065fd429a3c818f292ed270

commit 39ab5e3879edef7f7065fd429a3c818f292ed270
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-11-25 19:03:00 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-11-25 19:14:55 +0000

    net/urelay: disable date/time nonreproducible build warning
    
    The base system build infrastructure will add -Wdate-time, to avoid
    use of nonreproducible __DATE__ and __TIME__ in the base system.
    
    This port makes use of the base system build infrastructure as well as
    __DATE__ and/or __TIME__, so explicitly opt out of the warning.
    
    PR:             267902 [exp-run]
    Approved by:    jrm
    Sponsored By:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D37505
---
 net/urelay/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net/urelay/Makefile b/net/urelay/Makefile
index 2c3433e92d2e..df3a729724d0 100644
--- a/net/urelay/Makefile
+++ b/net/urelay/Makefile
@@ -11,4 +11,6 @@ USES=		uidfix
 PLIST_FILES=	bin/urelay \
 		man/man1/urelay.1.gz
 
+MAKE_ENV+=      NO_WDATE_TIME=yes
+
 .include <bsd.port.mk>