aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-04-15 13:57:04 +0200
committerEelco Dolstra <edolstra@gmail.com>2021-04-15 13:57:04 +0200
commit4cd9bd19cd8fecf1dd4cff1f0178091da2ef1316 (patch)
tree5190ef8485d30fa1f03e35f67d57e47e9e07e88f
parent15f4d4fd437070e898982c510228b6e8eea17b7d (diff)
Drop unused tar dependency
-rw-r--r--configure.ac11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac
index c8d59a212..6c36787f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -285,17 +285,6 @@ if test "$(uname)" = "Darwin"; then
fi
-# Do we have GNU tar?
-AC_MSG_CHECKING([if you have a recent GNU tar])
-if $tar --version 2> /dev/null | grep -q GNU && tar cvf /dev/null --warning=no-timestamp ./config.log > /dev/null; then
- AC_MSG_RESULT(yes)
- tarFlags="--warning=no-timestamp"
-else
- AC_MSG_RESULT(no)
-fi
-AC_SUBST(tarFlags)
-
-
AC_ARG_WITH(sandbox-shell, AC_HELP_STRING([--with-sandbox-shell=PATH],
[path of a statically-linked shell to use as /bin/sh in sandboxes]),
sandbox_shell=$withval)