Skip to content

Commit

Permalink
Add tarball signing to Makefile
Browse files Browse the repository at this point in the history
I managed to screw up the 3.13 signature doing it manually; the .asc file
contained a copy of the tarball data rather than being *just* the signature.

Add it to the Makefile and that should stop me screwing it up later.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Nov 8, 2011
1 parent e56f4ca commit eb62266
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile.am
Expand Up @@ -53,6 +53,11 @@ dist-hook: uncommitted-check
echo "*** ERROR: Git checkout not at version v$(VERSION)"; exit 1; fi ; \
fi

sign-dist: dist
@for a in $(DIST_ARCHIVES); do \
gpg --default-key 67E2F359 --detach-sign -a $$a ; \
done

tag: uncommitted-check
@if git rev-parse --verify v$(VERSION) &> /dev/null; then \
echo "*** ERROR: Version v$(VERSION) is already tagged"; exit 1; fi
Expand Down

0 comments on commit eb62266

Please sign in to comment.