commit 0d619dde071d072d401a2a804f5c5f88fb3abe43 Author: Francois Gouget Date: Sat May 6 02:01:01 2017 +0200 check: sane-devel is only needed at compile time. sane-devel provides sane-config which is used to show the sane version. However there is no minimum version requirement so that sane-devel is not really required at runtime. Signed-off-by: Francois Gouget diff --git a/installer/core_install.py b/installer/core_install.py index 81603fe25..093f0fdc1 100644 --- a/installer/core_install.py +++ b/installer/core_install.py @@ -357,7 +357,10 @@ class CoreInstall(object): # Required scan packages 'sane': (True, ['scan'], SANE_STR, self.check_sane, DEPENDENCY_RUN_TIME,'-','sane-config --version',GENERALDEP), - 'sane-devel' : (True, ['scan'], SANE_DEV_STR, self.check_sane_devel, DEPENDENCY_COMPILE_TIME,'-','sane-config --version',GENERALDEP), + # sane-devel provides sane-config which is used above to show the + # sane version. But since there is no minimal version requirement + # it is only really needed at build time. + 'sane-devel' : (True, ['scan'], SANE_DEV_STR, self.check_sane_devel, DEPENDENCY_COMPILE_TIME,'-','sane-config --version',COMPILEDEP), # Optional scan packages 'xsane': (False, ['scan'], XSANE_STR, self.check_xsane, DEPENDENCY_RUN_TIME,'0.9','FUNC#get_xsane_version', EXTERNALDEP),