[svn] GnuPG - r4190 - trunk/m4
svn author dshaw
cvs at cvs.gnupg.org
Tue Jul 11 14:36:04 CEST 2006
Author: dshaw
Date: 2006-07-11 14:36:04 +0200 (Tue, 11 Jul 2006)
New Revision: 4190
Modified:
trunk/m4/ChangeLog
trunk/m4/tar-ustar.m4
Log:
* 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.
Modified: trunk/m4/ChangeLog
===================================================================
--- trunk/m4/ChangeLog 2006-07-08 23:29:25 UTC (rev 4189)
+++ trunk/m4/ChangeLog 2006-07-11 12:36:04 UTC (rev 4190)
@@ -1,3 +1,9 @@
+2006-07-11 David Shaw <dshaw at 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 at g10code.com>
* Makefile.am: Added noexecstack.m4 and ldap.m4
Modified: trunk/m4/tar-ustar.m4
===================================================================
--- trunk/m4/tar-ustar.m4 2006-07-08 23:29:25 UTC (rev 4189)
+++ trunk/m4/tar-ustar.m4 2006-07-11 12:36:04 UTC (rev 4190)
@@ -27,7 +27,7 @@
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
More information about the Gnupg-commits
mailing list