From: Bernd Kuhls Date: Fri, 18 Jun 2021 19:22:34 +0000 (+0200) Subject: package/mpv: fix reproducible build issues X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=083b48194fc7d46278bb6c33355322bf02eaec47;p=buildroot.git package/mpv: fix reproducible build issues Do not include the build date when creating reproducible builds. Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk index 25ac783b52..30f377054f 100644 --- a/package/mpv/mpv.mk +++ b/package/mpv/mpv.mk @@ -28,6 +28,10 @@ MPV_CONF_OPTS = \ --disable-uchardet \ --disable-vapoursynth +ifeq ($(BR2_REPRODUCIBLE),y) +MPV_CONF_OPTS += --disable-build-date +endif + ifeq ($(BR2_STATIC_LIBS),y) MPV_CONF_OPTS += --disable-libmpv-shared --enable-libmpv-static else