Allow to override ISO_VERSION for devel builds from builder.conf

For devel builds we use current date as ISO version. Allow to provide
specific value, without marking the ISO as final.
This commit is contained in:
Marek Marczykowski-Górecki 2018-10-04 21:29:11 +02:00
parent 8ed5c0ae4c
commit acdcbfd6d0

View File

@ -27,7 +27,7 @@ ifdef QUBES_RELEASE
ISO_VERSION := $(QUBES_RELEASE) ISO_VERSION := $(QUBES_RELEASE)
PUNGI_OPTS += --isfinal PUNGI_OPTS += --isfinal
else else
ISO_VERSION := $(shell date +%Y%m%d) ISO_VERSION ?= $(shell date +%Y%m%d)
endif endif
PUNGI_OPTS += --ver="$(ISO_VERSION)" PUNGI_OPTS += --ver="$(ISO_VERSION)"