[svn] GnuPG - r4108 - in trunk: . doc
svn author wk
cvs at cvs.gnupg.org
Wed Apr 12 12:36:23 CEST 2006
Author: wk
Date: 2006-04-12 12:36:23 +0200 (Wed, 12 Apr 2006)
New Revision: 4108
Modified:
trunk/ChangeLog
trunk/configure.ac
trunk/doc/ChangeLog
trunk/doc/gpg.sgml
Log:
use minimal posix sed
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-04-11 19:45:44 UTC (rev 4107)
+++ trunk/ChangeLog 2006-04-12 10:36:23 UTC (rev 4108)
@@ -1,3 +1,8 @@
+2006-04-12 Werner Koch <wk at g10code.com>
+
+ * configure.ac: Print version at end of run.
+ (svn_revision): Posix adjustment.
+
2006-04-07 Werner Koch <wk at g10code.com>
* configure.ac: Use new method to include the SVN revison. Now it
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2006-04-11 19:45:44 UTC (rev 4107)
+++ trunk/configure.ac 2006-04-12 10:36:23 UTC (rev 4108)
@@ -31,7 +31,7 @@
m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \
- || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q}')]))
+ || echo 'Revision: 0')|sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)]))
AC_INIT([gnupg], my_version[]m4_if(my_issvn,[yes],[-svn[]svn_revision]),
[bug-gnupg at gnu.org])
# Set development_version to yes if the minor number is odd or you
@@ -1407,6 +1407,7 @@
# Give some feedback
echo
+echo " Version info: $PACKAGE_STRING"
echo " Configured for: $PRINTABLE_OS_NAME ($host)"
if test -n "$show_extraasm"; then
echo " Extra cpu specific functions:$show_extraasm"
Modified: trunk/doc/ChangeLog
===================================================================
--- trunk/doc/ChangeLog 2006-04-11 19:45:44 UTC (rev 4107)
+++ trunk/doc/ChangeLog 2006-04-12 10:36:23 UTC (rev 4108)
@@ -1,3 +1,7 @@
+2006-04-11 Michael Roth <mroth at nessie.de> (wk)
+
+ * gpg.sgml (passphrase-fd): Explain that only the first line is used.
+
2006-04-09 David Shaw <dshaw at jabberwocky.com>
* gpg.sgml: Some typo fixes. This is Debian 361324.
Modified: trunk/doc/gpg.sgml
===================================================================
--- trunk/doc/gpg.sgml 2006-04-11 19:45:44 UTC (rev 4107)
+++ trunk/doc/gpg.sgml 2006-04-12 10:36:23 UTC (rev 4108)
@@ -2340,18 +2340,20 @@
<varlistentry>
<term>--passphrase-fd &ParmN;</term>
<listitem><para>
-Read the passphrase from file descriptor &ParmN;. If you use 0 for
-&ParmN;, the passphrase will be read from stdin. This can only be
-used if only one passphrase is supplied.
+Read the passphrase from file descriptor &ParmN;. Only the first line
+will be read from file descriptor &ParmN;. If you use 0 for &ParmN;,
+the passphrase will be read from stdin. This can only be used if only
+one passphrase is supplied.
</para></listitem></varlistentry>
<varlistentry>
<term>--passphrase-file &ParmFile;</term>
<listitem><para>
-Read the passphrase from file &ParmFile;. This can only be used if
-only one passphrase is supplied. Obviously, a passphrase stored in a
-file is of questionable security if other users can read this file.
-Don't use this option if you can avoid it.
+Read the passphrase from file &ParmFile;. Only the first line will
+be read from file &ParmFile;. This can only be used if only one
+passphrase is supplied. Obviously, a passphrase stored in a file is
+of questionable security if other users can read this file. Don't use
+this option if you can avoid it.
</para></listitem></varlistentry>
<varlistentry>
More information about the Gnupg-commits
mailing list