1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* defs.inc (pgmname): Make sure there is a valid options file. (From wk on

stable branch)

* mds.test: Note that missing algorithms are not errors.
This commit is contained in:
David Shaw 2003-05-26 14:14:03 +00:00
parent aca5806d4e
commit d61c869d75
3 changed files with 20 additions and 4 deletions

View file

@ -98,9 +98,18 @@ pgmname=`basename $0`
[ -z "$srcdir" ] && fatal "not called from make"
# Make sure we have a valid option files even with VPATH builds.
if [ -f ./options ]; then
:
elif [ -f ./gpg.conf ]; then
:
elif [ -f $srcdir/options ]; then
cat $srcdir/options >gpg.conf
fi
GPG="../g10/gpg --homedir . "
exec 2> ${pgmname}.log
:
# end
# end