pulseaudio: fix udev configure option

enable-libudev doesn't exist as a configure option. The right one is
enable-udev.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Vicente Olivert Riera 2016-06-23 11:09:56 +01:00 committed by Peter Korsgaard
parent 27797d9d27
commit 9d5087b0d7

View File

@ -79,10 +79,10 @@ PULSEAUDIO_CONF_OPTS += --without-soxr
endif
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
PULSEAUDIO_CONF_OPTS += --enable-libudev
PULSEAUDIO_CONF_OPTS += --enable-udev
PULSEAUDIO_DEPENDENCIES += udev
else
PULSEAUDIO_CONF_OPTS += --disable-libudev
PULSEAUDIO_CONF_OPTS += --disable-udev
endif
ifneq ($(BR2_INSTALL_LIBSTDCPP),y)