Просмотр исходного кода

dillo: fix jpeg dependency

dillo was explicitly pulling in libjpeg instead of the virtual 'jpeg'
package, even though it also works with jpeg-turbo.

Reported-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard 10 лет назад
Родитель
Сommit
d222f6d06e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      package/dillo/dillo.mk

+ 1 - 1
package/dillo/dillo.mk

@@ -32,7 +32,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_JPEG),y)
 DILLO_CONF_OPTS += --enable-jpeg
-DILLO_DEPENDENCIES += libjpeg
+DILLO_DEPENDENCIES += jpeg
 else
 DILLO_CONF_OPTS += --disable-jpeg
 endif