diff options
author | Alexey Neyman <stilor@att.net> | 2020-03-16 23:30:08 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-03-16 23:30:08 -0700 |
commit | 09ab9a47a4d56b154b83ee902826cec62a1baca0 (patch) | |
tree | eb6fe017cd0a73806c991c3f129c246508755c8c | |
parent | c969be1880f99b6da4d98afd7bda641b7868a717 (diff) | |
download | crosstool-ng-09ab9a47a4d56b154b83ee902826cec62a1baca0.tar.gz crosstool-ng-09ab9a47a4d56b154b83ee902826cec62a1baca0.tar.bz2 crosstool-ng-09ab9a47a4d56b154b83ee902826cec62a1baca0.zip |
Allow environment override of USE_GPG/DIGESTS
... because if it is invoked via create-release.sh, it it not possible
to pass the variables to make otherwise.
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 37c32399..2e7cd1d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -91,8 +91,8 @@ create-symlinks: gen-tarball-version: echo $(VERSION) > $(distdir)/.tarball-version -DIGESTS = md5 sha1 sha512 -USE_GPG = yes +DIGESTS ?= md5 sha1 sha512 +USE_GPG ?= yes dist-create-release: distcheck for a in $(DIST_ARCHIVES); do \ |