summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2012-02-01 18:08:49 +0100
committerJean Delvare <jdelvare@suse.de>2012-02-01 18:08:49 +0100
commitd285258acd43a77d2b21b72834a1cc7a4ae63672 (patch)
tree55ee2cf59c794decfa6736beb181839f70857e0f /configure.ac
parent430bb1c5ebd663d7cb797d29e2c90388c23c107c (diff)
downloadquilt-d285258acd43a77d2b21b72834a1cc7a4ae63672.tar.gz
backup-files: Remember the list of files
Remember the results of the find command, to avoid having to run it again later. We use a temporary file rather than a local variable, because you can't store binary zeroes in a bash string, and because the temporary file approach performs better on large file sets. Signed-off-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Raphael Hertzog <hertzog@debian.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac13
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index 0f44a95..54d794f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -321,19 +321,6 @@ fi
QUILT_COMPAT_PROG_PATH(XARGS, xargs)
-AC_MSG_CHECKING([whether $XARGS -r works])
-if echo | $XARGS -r echo >/dev/null 2>&1; then
- AC_MSG_RESULT(yes)
-else
- AC_MSG_RESULT(no)
- AC_MSG_ERROR([
-Sorry, you have a version of xargs which doesn't understand -r.
-$PACKAGE_NAME needs it. If you have access to a version of xargs which
-does understand -r, you can supply its path with the
-'--with-xargs=' option.
-])
-fi
-
AC_MSG_CHECKING([whether $XARGS -0 works])
if echo | $XARGS -0 echo >/dev/null 2>&1; then
AC_MSG_RESULT(yes)