mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
* 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:
parent
975da08004
commit
b19683689c
@ -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>
|
2006-06-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* Makefile.am: Added noexecstack.m4 and ldap.m4
|
* Makefile.am: Added noexecstack.m4 and ldap.m4
|
||||||
|
@ -27,7 +27,7 @@ AC_DEFUN([GNUPG_CHECK_USTAR],
|
|||||||
if test x$_mytar != x ; then
|
if test x$_mytar != x ; then
|
||||||
AC_MSG_CHECKING([whether $_mytar speaks USTAR])
|
AC_MSG_CHECKING([whether $_mytar speaks USTAR])
|
||||||
echo hithere > conftest.txt
|
echo hithere > conftest.txt
|
||||||
$_mytar -cf - conftest.txt | grep -q ustar
|
$_mytar -cf - conftest.txt | strings | grep -q ustar
|
||||||
_tar_bad=$?
|
_tar_bad=$?
|
||||||
rm conftest.txt
|
rm conftest.txt
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user