aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew G Morgan <morgan@kernel.org>2013-12-27 10:04:50 -0800
committerAndrew G Morgan <morgan@kernel.org>2013-12-27 10:04:50 -0800
commit3a788dd0532ab3c6faef7716e4bd01896c0cff2a (patch)
treefe5cfb6caecadc784b3bce6f0275594b7f2d6a3f /Makefile
parent8e9c7177456fb363b7860351cb01281cf00fa1f3 (diff)
downloadlibcap-3a788dd0532ab3c6faef7716e4bd01896c0cff2a.tar.gz
Adjustments to point to kernel.org locations.
Also include a copy of the public key I have to use to upload binaries to kernel.org. Moving forward, I plan to sign release tags with both keys. 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 da84180..2c36f2b 100644
--- a/Makefile
+++ b/Makefile
@@ -30,5 +30,7 @@ release: distclean
cd .. && ln -s libcap libcap-$(VERSION).$(MINOR) && tar cvfz libcap-$(VERSION).$(MINOR).tar.gz libcap-$(VERSION).$(MINOR)/* && rm libcap-$(VERSION).$(MINOR)
tagrelease: distclean
- git tag -u E2CCF3F4 -s libcap-$(VERSION).$(MINOR)
+ @echo "sign the tag twice: older DSA key; and newer RSA kernel.org key"
+ git tag -u D41A6DF2 -s libcap-$(VERSION).$(MINOR)
+ git tag -u E2CCF3F4 -s libcap-korg-$(VERSION).$(MINOR)
make release