diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-08-27 13:11:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-27 13:33:44 +0200 |
commit | 38e0a58ce11125d20ef1f8aed7996518d7ddbb38 (patch) | |
tree | 67c71d383a8288217b764554d171a0f1bcd141f9 /configure.in | |
parent | 6e7baaaba85b0d6cd86e959f9af229a0d30c01f8 (diff) |
fdo#53857: Assume --strip-components is always available for bsdtar
Change-Id: Ic05c0cb9ac2c20788870069939d6708214ea0cda
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index b72029a1d3dc..43de70b6a4f6 100644 --- a/configure.in +++ b/configure.in @@ -2221,7 +2221,7 @@ fi AC_SUBST(GNUTAR) AC_MSG_CHECKING([for tar's option to strip components]) -$GNUTAR --help 2> /dev/null | egrep "strip-components" 2>&1 >/dev/null +$GNUTAR --help 2> /dev/null | egrep "bsdtar|strip-components" 2>&1 >/dev/null if test $? -eq 0; then STRIP_COMPONENTS="--strip-components" else |