From: Thomas Petazzoni Date: Mon, 1 Jan 2018 21:44:46 +0000 (+0100) Subject: mpv: fix typo in variable name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eea60d14360a3f40be1ac0da181f9ba183cf2c73;p=buildroot.git mpv: fix typo in variable name FFMPEG_DEPENDENCIES shouldn't be used in mpv.mk. This typo was introduced in commit 8e741412d444f9fd2a9af75bf33066a083f7f81b ("mpv: add support for Raspberry Pi "rpi" output"). Signed-off-by: Thomas Petazzoni --- diff --git a/package/mpv/mpv.mk b/package/mpv/mpv.mk index b7dfb369af..8d10aa7c47 100644 --- a/package/mpv/mpv.mk +++ b/package/mpv/mpv.mk @@ -171,7 +171,7 @@ endif # Raspberry Pi support ifeq ($(BR2_PACKAGE_RPI_USERLAND),y) MPV_CONF_OPTS += --enable-rpi --enable-gl -FFMPEG_DEPENDENCIES += rpi-userland +MPV_DEPENDENCIES += rpi-userland else MPV_CONF_OPTS += --disable-rpi endif