From 823c0be522973152d31950213f73566459bd05d1 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 10 Feb 2014 17:01:35 +0100 Subject: [PATCH] Look for yaz-client; not yaz-config --- Makefile.PL | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 5958ba1..f906fc0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,12 +4,11 @@ use strict; use warnings; use ExtUtils::MakeMaker; -my $yazver = `yaz-config --version`; +my $yazver = `yaz-client -V`; if (!$yazver) { die qq[ -ERROR: Unable to call script: yaz-config -If you are using a YAZ installation from the Debian package "yaz", you -will also need to install "libyaz-dev" in order to build this module. +ERROR: Unable to call program: yaz-client +Perhaps YAZ is not installed. Program yaz-client is part of package yaz. ]; } -- 1.7.10.4