aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2020-07-07 20:00:46 -0700
committerAndrew G. Morgan <morgan@kernel.org>2020-07-07 20:00:46 -0700
commit24aa318f9f99931975b3e71f5b4aad9aebfda655 (patch)
tree4295da12ab2af21c5a4f32e7d8e5b087d7426f6f /Makefile
parent7afc89f34dd993cb6e8d3edc0ffbb2b2a0e01ef7 (diff)
downloadlibcap-24aa318f9f99931975b3e71f5b4aad9aebfda655.tar.gz
It looks as if the module files need a libcap directory tag.
I initially made one, and now modules are building with that stale value v0.2.37. All despite the fact the Go modules are at v0.2.38. Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 67348b8..30e1166 100644
--- a/Makefile
+++ b/Makefile
@@ -62,9 +62,11 @@ distcheck:
./distcheck.sh
morganrelease: distclean distcheck
- @echo "sign the tag twice: older DSA key; and newer RSA kernel.org key"
+ @echo "sign the main library tag twice: older DSA key; and newer RSA (kernel.org) key"
git tag -u D41A6DF2 -s libcap-$(VERSION).$(MINOR) -m "This is libcap-$(VERSION).$(MINOR)"
git tag -u E2CCF3F4 -s libcap-korg-$(VERSION).$(MINOR) -m "This is libcap-$(VERSION).$(MINOR)"
+ @echo "The following are for the Go module tracking."
+ git tag -u D41A6DF2 -s v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'libcap' Go base directory associated with libcap-$(VERSION).$(MINOR)."
git tag -u D41A6DF2 -s psx/v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'psx' Go package associated with libcap-$(VERSION).$(MINOR)."
git tag -u D41A6DF2 -s cap/v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the version tag for the 'cap' Go package associated with libcap-$(VERSION).$(MINOR)."
make release