From 835e8be077a1831989c8f344b4a3d692048241e2 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 6 May 2017 01:59:10 +0200 Subject: check: cups-image is only needed at compile time. All that this checks is that the raster.h header is available and it is only needed at compile time. Note that the cups-config requirement is already taken care of by cups-devel. Signed-off-by: Francois Gouget --- installer/core_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/core_install.py b/installer/core_install.py index 47f92ec7d..00f636e27 100644 --- a/installer/core_install.py +++ b/installer/core_install.py @@ -355,7 +355,7 @@ class CoreInstall(object): # cups-devel provides cups-config which we need to verify that # cups meets the minimum version requirement :-( 'cups-devel': (True, ['base', 'prnt'], CUPS_DEV_STR, self.check_cups_devel, DEPENDENCY_COMPILE_TIME, '-', 'cups-config --version', GENERALDEP), - 'cups-image': (True, ['base', 'prnt'], CUPS_IMG_STR, self.check_cups_image, DEPENDENCY_COMPILE_TIME, '-', 'cups-config --version', GENERALDEP), + 'cups-image': (True, ['base', 'prnt'], CUPS_IMG_STR, self.check_cups_image, DEPENDENCY_COMPILE_TIME,'-','cups-config --version', COMPILEDEP), 'gcc': (True, ['base', 'prnt'], GCC_STR, self.check_gcc, DEPENDENCY_COMPILE_TIME, '-', 'gcc --version', COMPILEDEP), 'make': (True, ['base', 'prnt'], MAKE_STR, self.check_make, DEPENDENCY_COMPILE_TIME, '3.0', 'make --version', COMPILEDEP), 'libpthread': (True, ['base', 'prnt'], THREAD_STR, self.check_libpthread, DEPENDENCY_RUN_AND_COMPILE_TIME, '-', 'FUNC#get_libpthread_version', GENERALDEP), -- 2.18.0