summaryrefslogtreecommitdiff
path: root/build-system
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-11-13 22:33:05 +0100
committerFlorian Dold <florian@dold.me>2020-11-13 22:33:05 +0100
commitcdf5cc583cd7fc938f38137da25aaee2aeaf28a9 (patch)
tree67544de55770a2d08024a0498f9b9b1ea077df9f /build-system
parent7b393ed7ed0e5960728f68574ccf6c353c9b10df (diff)
downloadwallet-core-cdf5cc583cd7fc938f38137da25aaee2aeaf28a9.tar.gz
wallet-core-cdf5cc583cd7fc938f38137da25aaee2aeaf28a9.tar.bz2
wallet-core-cdf5cc583cd7fc938f38137da25aaee2aeaf28a9.zip
only use version in 'make dist'
Diffstat (limited to 'build-system')
-rw-r--r--build-system/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/build-system/Makefile b/build-system/Makefile
index 6bd29884e..229f2be1d 100644
--- a/build-system/Makefile
+++ b/build-system/Makefile
@@ -1,3 +1,5 @@
+# This Makefile has been placed in the public domain.
+
src = src
poname = taler-wallet-webex
@@ -6,12 +8,8 @@ pogen = node_modules/pogen/bin/pogen.js
typedoc = node_modules/typedoc/bin/typedoc
ava = node_modules/.bin/ava
nyc = node_modules/nyc/bin/nyc.js
-
git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git_archive_all.py
-
-version := $(shell git describe --tags)
-
include ./build-system/config.mk
.PHONY: compile
@@ -21,7 +19,7 @@ compile:
.PHONY: dist
dist:
- $(git-archive-all) --include ./configure taler-wallet-$(version).tar.gz
+ $(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz
# make documentation from docstrings
.PHONY: typedoc