mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
build: Make getswdb.sh usable outside the GniPG tree.
--
This commit is contained in:
parent
dcab895e4c
commit
c27e5be50b
@ -34,6 +34,7 @@ Options:
|
|||||||
--skip-download Assume download has already been done.
|
--skip-download Assume download has already been done.
|
||||||
--skip-verify Do not check signatures
|
--skip-verify Do not check signatures
|
||||||
--skip-selfcheck Do not check GnuPG version
|
--skip-selfcheck Do not check GnuPG version
|
||||||
|
(default if not used in the GnuPG tree)
|
||||||
--find-sha1sum Print the name of the sha1sum utility
|
--find-sha1sum Print the name of the sha1sum utility
|
||||||
--find-sha256sum Print the name of the sha256sum utility
|
--find-sha256sum Print the name of the sha256sum utility
|
||||||
--help Print this help.
|
--help Print this help.
|
||||||
@ -114,16 +115,37 @@ if [ ${find_sha256sum} = yes ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ $skip_verify = no ]; then
|
||||||
|
if [ ! -f "$distsigkey" ]; then
|
||||||
|
distsigkey="/usr/local/share/gnupg/distsigkey.gpg"
|
||||||
|
if [ ! -f "$distsigkey" ]; then
|
||||||
|
distsigkey="/usr/share/gnupg/distsigkey.gpg"
|
||||||
|
if [ ! -f "$distsigkey" ]; then
|
||||||
|
echo "no keyring with release keys found!" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo "using release keys from $distsigkey" >&2
|
||||||
|
skip_selfcheck=yes
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Get GnuPG version from VERSION file. For a GIT checkout this means
|
# Get GnuPG version from VERSION file. For a GIT checkout this means
|
||||||
# that ./autogen.sh must have been run first. For a regular tarball
|
# that ./autogen.sh must have been run first. For a regular tarball
|
||||||
# VERSION is always available.
|
# VERSION is always available.
|
||||||
if [ ! -f "$srcdir/../VERSION" ]; then
|
if [ $skip_selfcheck = no ]; then
|
||||||
|
if [ ! -f "$srcdir/../VERSION" ]; then
|
||||||
echo "VERSION file missing - run autogen.sh first." >&2
|
echo "VERSION file missing - run autogen.sh first." >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
|
version=$(cat "$srcdir/../VERSION")
|
||||||
|
else
|
||||||
|
version="0.0.0"
|
||||||
fi
|
fi
|
||||||
version=$(cat "$srcdir/../VERSION")
|
|
||||||
version_num=$(echo "$version" | cvtver)
|
version_num=$(echo "$version" | cvtver)
|
||||||
|
|
||||||
|
|
||||||
if [ $skip_verify = no ]; then
|
if [ $skip_verify = no ]; then
|
||||||
if ! $GPGV --version >/dev/null 2>/dev/null ; then
|
if ! $GPGV --version >/dev/null 2>/dev/null ; then
|
||||||
echo "command \"gpgv\" is not installed" >&2
|
echo "command \"gpgv\" is not installed" >&2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user