diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2019-03-23 13:35:42 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-03-27 17:53:18 -0300 |
| commit | cc8d837d5a137a14a62526dcea60af1de7a353e4 (patch) | |
| tree | 2518ad0d716d1b9123317bdbd69d43750a5736e2 | |
| parent | cbeb0da5958b2f53059269379b219710ee7618cc (diff) | |
build: ensure that SHA256_FILE is built
The SHA256_FILE used to be built automatically because of the makefile
dependencies.
Since b8a8dbed91d16299a8768646fb6f18181f31ec40, it isn't getting made
properly, so the release target would fail.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
| -rw-r--r-- | Makefile.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.local b/Makefile.local index 01ba49cc..8535844a 100644 --- a/Makefile.local +++ b/Makefile.local @@ -68,7 +68,7 @@ release: verify-source-tree-and-version $(MAKE) VERSION=$(VERSION) clean $(MAKE) VERSION=$(VERSION) test git tag -s -m "$(PACKAGE) $(VERSION) release" $(UPSTREAM_TAG) - $(MAKE) VERSION=$(VERSION) $(GPG_FILE) + $(MAKE) VERSION=$(VERSION) $(SHA256_FILE) $(GPG_FILE) ln -sf $(TAR_FILE) $(DEB_TAR_FILE) pristine-tar commit $(DEB_TAR_FILE) $(UPSTREAM_TAG) git tag -s -m "$(PACKAGE) Debian $(VERSION)-1 upload (same as $(VERSION))" $(DEB_TAG) |
