From patchwork Tue Feb 12 18:18:40 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Filipe Manana X-Patchwork-Id: 10808513 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2961A13BF for ; Tue, 12 Feb 2019 18:18:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 15C5D2C59A for ; Tue, 12 Feb 2019 18:18:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 048492C59D; Tue, 12 Feb 2019 18:18:45 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 93DE22C59A for ; Tue, 12 Feb 2019 18:18:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726748AbfBLSSn (ORCPT ); Tue, 12 Feb 2019 13:18:43 -0500 Received: from mail.kernel.org ([198.145.29.99]:53356 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726685AbfBLSSn (ORCPT ); Tue, 12 Feb 2019 13:18:43 -0500 Received: from localhost.localdomain (bl8-197-74.dsl.telepac.pt [85.241.197.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C23F4222C0 for ; Tue, 12 Feb 2019 18:18:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1549995523; bh=IwtHNXyT9Izu3c6ziHH4QqJOgAI2eQDmfHnPsP3sya8=; h=From:To:Subject:Date:From; b=oi1qf8K2yK8Ql5s5y/Ejw/iLqQ/NoATYb4Kq1pYiOiFMn77CmSThsRririIH9c/Ji 8lQyWCtYYKXM9mSHM6148uexn4eRwTZo9BCjG5TW54pGvf762xKkavTxOtinEdvm3M yauN0xg5mcfp3iq4FzN+B0qgEgr9OuxOw1o/EuI8= From: fdmanana@kernel.org To: fstests@vger.kernel.org Subject: [PATCH] Fix error message when xfs handle library not found Date: Tue, 12 Feb 2019 18:18:40 +0000 Message-Id: <20190212181840.7093-1-fdmanana@kernel.org> X-Mailer: git-send-email 2.11.0 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Filipe Manana The error message mentions a "make install-lib" target from xfsprogs, however that target does not exists in xfsprogs, what exists is a target named "install-dev". So fix that and replace "install-lib" with "install-dev". Signed-off-by: Filipe Manana --- m4/package_xfslibs.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/package_xfslibs.m4 b/m4/package_xfslibs.m4 index 9be56e11..ad019518 100644 --- a/m4/package_xfslibs.m4 +++ b/m4/package_xfslibs.m4 @@ -83,7 +83,7 @@ AC_DEFUN([AC_PACKAGE_NEED_ATTRLIST_LIBHANDLE], echo echo 'FATAL ERROR: could not find a current XFS handle library.' echo 'Install or upgrade the XFS library package.' - echo 'Alternatively, run "make install-lib" from the xfsprogs source.' + echo 'Alternatively, run "make install-dev" from the xfsprogs source.' exit 1 ]) libhdl="-lhandle"