From patchwork Thu Jul 16 18:50:15 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Scott James Remnant X-Patchwork-Id: 29874 Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id A77DCB7088 for ; Fri, 17 Jul 2009 05:01:19 +1000 (EST) Received: by ozlabs.org (Postfix) id 9BF84DDDA0; Fri, 17 Jul 2009 05:01:19 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 39314DDD1C for ; Fri, 17 Jul 2009 05:01:19 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933067AbZGPTBP (ORCPT ); Thu, 16 Jul 2009 15:01:15 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933064AbZGPTBN (ORCPT ); Thu, 16 Jul 2009 15:01:13 -0400 Received: from zelda.netsplit.com ([87.194.19.211]:60101 "EHLO zelda.netsplit.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933032AbZGPTBJ (ORCPT ); Thu, 16 Jul 2009 15:01:09 -0400 Received: from scott by zelda.netsplit.com with local (Exim 4.69) (envelope-from ) id 1MRWBp-0000yS-Dx; Thu, 16 Jul 2009 20:00:21 +0100 From: Scott James Remnant Date: Thu, 16 Jul 2009 19:50:15 +0100 Subject: [PATCH] configure: Disable fsck wrapper on Linux by default To: linux-ext4@vger.kernel.org Cc: Theodore Tso , util-linux-ng@vger.kernel.org Message-Id: Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Since util-linux-ng now builds its fsck wrapper by default, e2fsprogs should not do so on Linux (it already does not on Hurd). Signed-off-by: Scott James Remnant --- configure | 6 +++--- configure.in | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 5c272d8..9a29609 100755 --- a/configure +++ b/configure @@ -4855,15 +4855,15 @@ fi else case "$host_os" in - gnu*) + gnu*|linux-gnu) FSCK_PROG='' FSCK_MAN='' { $as_echo "$as_me:$LINENO: result: Not building fsck wrapper by default" >&5 $as_echo "Not building fsck wrapper by default" >&6; } ;; *) FSCK_PROG=fsck FSCK_MAN=fsck.8 - { $as_echo "$as_me:$LINENO: result: Building fsck wrapper by default" >&5 -$as_echo "Building fsck wrapper by default" >&6; } + { $as_echo "$as_me:$LINENO: result: Building fsck wrapper by default)" >&5 +$as_echo "Building fsck wrapper by default)" >&6; } esac fi diff --git a/configure.in b/configure.in index 25b9427..d9990b4 100644 --- a/configure.in +++ b/configure.in @@ -576,13 +576,13 @@ else fi] , [case "$host_os" in - gnu*) + gnu*|linux-gnu) FSCK_PROG='' FSCK_MAN='' AC_MSG_RESULT([Not building fsck wrapper by default]) ;; *) FSCK_PROG=fsck FSCK_MAN=fsck.8 - AC_MSG_RESULT([Building fsck wrapper by default]) + AC_MSG_RESULT([Building fsck wrapper by default)]) esac] ) AC_SUBST(FSCK_PROG)