From patchwork Sat Jul 12 03:17:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liu Yuan X-Patchwork-Id: 369269 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id D4D8814008F for ; Sat, 12 Jul 2014 13:18:25 +1000 (EST) Received: from localhost ([::1]:47535 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5npP-0006DH-Pd for incoming@patchwork.ozlabs.org; Fri, 11 Jul 2014 23:18:23 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48482) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5np1-0005vv-BJ for qemu-devel@nongnu.org; Fri, 11 Jul 2014 23:18:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5nor-0003Ae-HO for qemu-devel@nongnu.org; Fri, 11 Jul 2014 23:17:59 -0400 Received: from mail-pa0-x22b.google.com ([2607:f8b0:400e:c03::22b]:59714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5nor-00039L-Ae for qemu-devel@nongnu.org; Fri, 11 Jul 2014 23:17:49 -0400 Received: by mail-pa0-f43.google.com with SMTP id lf10so2056449pab.30 for ; Fri, 11 Jul 2014 20:17:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=MithdfFbyTjD/FbvkzyqiYv7APW9nQkUYw8IifmkfvQ=; b=YG2pcsyeSuhQ5ipDrqfaNN7rEkOihVbDInr29ho8Jx9u2jRknczcIiBmTy/0jQ4Kmu UNRSasOAqylqikwTJ68+1152uxPS37ARWyaUcBPU+BQiGImWOBmaCsdWkXKdCwjYRCWu r4RJO3PfHTnTtvIvksjqW8xWh3mrIl4WpCSGgWetYk8pofDbLDcdDEj9rnGDKZCGFEt4 hj7BgmG3r/ghuqPOkKPmTEmNbCYf7C/XBZ6Xa0rk0QpVtmmGJGqS3o8z9+B3Sjn337Jw u0C8QmGjbQxU/Ae6/PydxR7S4wGo9YmTgGPGjo1PaV9kXX0ydef/8zJPQjl7/4hVl2OM neFA== X-Received: by 10.70.92.9 with SMTP id ci9mr2964223pdb.24.1405135067659; Fri, 11 Jul 2014 20:17:47 -0700 (PDT) Received: from localhost.localdomain ([27.9.30.83]) by mx.google.com with ESMTPSA id z3sm16148749pas.15.2014.07.11.20.17.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 11 Jul 2014 20:17:46 -0700 (PDT) From: Liu Yuan To: qemu-devel@nongnu.org Date: Sat, 12 Jul 2014 11:17:40 +0800 Message-Id: <1405135060-25369-1-git-send-email-namei.unix@gmail.com> X-Mailer: git-send-email 1.9.1 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::22b Cc: Kevin Wolf Subject: [Qemu-devel] [PATCH v2] configure: make libnfs not_found message user friendly X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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" fi libnfs="no" fi