added missing configure message for +MAGICK
authorphilip <me@filou.se>
Thu, 18 Jul 2019 08:56:50 +0000 (10:56 +0200)
committerphilip <me@filou.se>
Thu, 18 Jul 2019 08:56:50 +0000 (10:56 +0200)
wscript

diff --git a/wscript b/wscript
index d35f003474090fcfb70b3c5d1e24a1b8b22ec8cb..8084f354dbba7a5b2586d5ad3fd61e9db33d5e39 100644 (file)
--- a/wscript
+++ b/wscript
@@ -115,7 +115,7 @@ def configure(conf):
 
     # ImageMagick / GraphicsMagick
     if distutils.spawn.find_executable('Magick++-config'):
-        conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True)
+        conf.check_cfg(package='', path='Magick++-config', args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True, msg='Checking for ImageMagick/GraphicsMagick')
     else:
         image = conf.check_cfg(package='ImageMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)
         graphics = conf.check_cfg(package='GraphicsMagick++', args='--cflags --libs', uselib_store='MAGICK', mandatory=False)