diff options
Diffstat (limited to 'package/lcms2/lcms2.mk')
-rw-r--r-- | package/lcms2/lcms2.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/lcms2/lcms2.mk b/package/lcms2/lcms2.mk index 993677b068..5d2204147f 100644 --- a/package/lcms2/lcms2.mk +++ b/package/lcms2/lcms2.mk @@ -9,27 +9,27 @@ LCMS2_SITE = http://downloads.sourceforge.net/lcms/lcms LCMS2_LICENSE = MIT LCMS2_LICENSE_FILES = COPYING -LCMS2_CONF_OPT = \ +LCMS2_CONF_OPTS = \ ifeq ($(BR2_PACKAGE_JPEG),y) - LCMS2_CONF_OPT += --with-jpeg + LCMS2_CONF_OPTS += --with-jpeg LCMS2_DEPENDENCIES += jpeg else - LCMS2_CONF_OPT += --without-jpeg + LCMS2_CONF_OPTS += --without-jpeg endif ifeq ($(BR2_PACKAGE_TIFF),y) - LCMS2_CONF_OPT += --with-tiff + LCMS2_CONF_OPTS += --with-tiff LCMS2_DEPENDENCIES += tiff else - LCMS2_CONF_OPT += --without-tiff + LCMS2_CONF_OPTS += --without-tiff endif ifeq ($(BR2_PACKAGE_ZLIB),y) - LCMS2_CONF_OPT += --with-zlib + LCMS2_CONF_OPTS += --with-zlib LCMS2_DEPENDENCIES += zlib else - LCMS2_CONF_OPT += --without-zlib + LCMS2_CONF_OPTS += --without-zlib endif $(eval $(autotools-package)) |