From db144206b5f35d612b038a5b0538e4433bc1299a Mon Sep 17 00:00:00 2001 From: ewt Date: Mon, 2 Dec 1996 23:27:39 +0000 Subject: [PATCH] look for GNU cpio 2.4.2 or later (w/ --quiet support), not just GNU cpio (with --help support) CVS patchset: 1203 CVS date: 1996/12/02 23:27:39 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 8c48124..7890b27 100644 --- a/configure.in +++ b/configure.in @@ -33,7 +33,7 @@ if test -z "$CPIOBIN"; then IFS=: for n in $PATH:/opt/gnu/bin; do if test -f $n/cpio; then - $n/cpio --help >/dev/null 2>/dev/null + $n/cpio --quiet >/dev/null 2>/dev/null if test "$?" = "0"; then CPIOBIN="$n/cpio"; fi @@ -45,7 +45,7 @@ fi if test -z "$CPIOBIN"; then echo "no" echo "" - echo "RPM will not work without GNU cpio." + echo "RPM will not work without GNU cpio 2.4.2 or later." exit 1 else echo "yes" -- 2.7.4