lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 16 Jul 2009 19:50:15 +0100
From:	Scott James Remnant <scott@...ntu.com>
To:	linux-ext4@...r.kernel.org
Cc:	Theodore Tso <tytso@....edu>, util-linux-ng@...r.kernel.org
Subject: [PATCH] configure: Disable fsck wrapper on Linux by default

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 <scott@...ntu.com>
---
 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)
-- 
1.6.0.5

--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ