From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33581) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6WZS-0005Dh-UC for qemu-devel@nongnu.org; Sun, 13 Jul 2014 23:05:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X6WZM-00024S-P6 for qemu-devel@nongnu.org; Sun, 13 Jul 2014 23:04:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53111) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6WZM-000245-H7 for qemu-devel@nongnu.org; Sun, 13 Jul 2014 23:04:48 -0400 Date: Mon, 14 Jul 2014 11:05:03 +0800 From: Fam Zheng Message-ID: <20140714030503.GB4606@T430.redhat.com> References: <1405135060-25369-1-git-send-email-namei.unix@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1405135060-25369-1-git-send-email-namei.unix@gmail.com> Subject: Re: [Qemu-devel] [PATCH v2] configure: make libnfs not_found message user friendly List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Liu Yuan Cc: Kevin Wolf , qemu-devel@nongnu.org On Sat, 07/12 11:17, Liu Yuan wrote: > Cc: Kevin Wolf > Signed-off-by: Liu Yuan > --- > configure | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure b/configure > index 7dd43fd..78e7baf 100755 > --- a/configure > +++ b/configure > @@ -3996,7 +3996,7 @@ if test "$libnfs" != "no" ; then > LIBS="$LIBS $libnfs_libs" > else > if test "$libnfs" = "yes" ; then > - feature_not_found "libnfs" > + feature_not_found "libnfs" "Install libnfs-devel >= 1.9.3" I notice that other occasions of feature_not_found doesn't add "-" between package and devel. Fam