From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4rUb-00059w-CG for qemu-devel@nongnu.org; Wed, 09 Jul 2014 09:01:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X4rUV-0002zV-7n for qemu-devel@nongnu.org; Wed, 09 Jul 2014 09:01:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X4rUV-0002zR-0C for qemu-devel@nongnu.org; Wed, 09 Jul 2014 09:00:55 -0400 Date: Wed, 9 Jul 2014 15:00:47 +0200 From: Kevin Wolf Message-ID: <20140709130047.GD4537@noname.redhat.com> References: <1404901730-30277-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: <1404901730-30277-1-git-send-email-namei.unix@gmail.com> Subject: Re: [Qemu-devel] [PATCH] configure: make libnfs not_found message more user friendly List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Liu Yuan Cc: qemu-devel@nongnu.org Am 09.07.2014 um 12:28 hat Liu Yuan geschrieben: > 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..684fcdf 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" "libnfs (>=1.9.3) development files required to compile libnfs" The message would be more consistent with other features if this said something like this: feature_not_found "libnfs" "Install libnfs-devel >= 1.9.3" Kevin