* tar-ustar.m4: Pass tar data through strings so that greps that don't

grep in binary files (Solaris) can detect the string.  Noted by Mark
Davies.
This commit is contained in:
David Shaw 2006-07-11 12:36:04 +00:00
parent 975da08004
commit b19683689c
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-07-11 David Shaw <dshaw@jabberwocky.com>
* tar-ustar.m4: Pass tar data through strings so that greps that
don't grep in binary files (Solaris) can detect the string. Noted
by Mark Davies.
2006-06-25 Werner Koch <wk@g10code.com>
* Makefile.am: Added noexecstack.m4 and ldap.m4

View File

@ -27,7 +27,7 @@ AC_DEFUN([GNUPG_CHECK_USTAR],
if test x$_mytar != x ; then
AC_MSG_CHECKING([whether $_mytar speaks USTAR])
echo hithere > conftest.txt
$_mytar -cf - conftest.txt | grep -q ustar
$_mytar -cf - conftest.txt | strings | grep -q ustar
_tar_bad=$?
rm conftest.txt