Rename TIMESTAMP variable to TEMPLATE_TIMESTAMP

Make it explicit that it's about template. Allow setting it from the
outside, to make predictable template version.

QubesOS/qubes-issues#3935
pull/11/head mm_6cbac4b4
Marek Marczykowski-Górecki 6 years ago
parent 1c7006b829
commit 6cbac4b4e0
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

@ -33,7 +33,7 @@ export TEMPLATE_SCRIPTS
export DISTRIBUTION
VERSION := $(shell cat version)
TIMESTAMP := $(shell date -u +%Y%m%d%H%M)
TEMPLATE_TIMESTAMP ?= $(shell date -u +%Y%m%d%H%M)
.PHONY: help template-name prepare package rpms rootimg-build
.PHONY: update-repo-templates-itl update-repo-templates-community
@ -48,7 +48,7 @@ template-name:
prepare:
@echo "Building template: $(TEMPLATE_NAME)"
@echo $(TIMESTAMP) > build_timestamp_$(TEMPLATE_NAME)
@echo $(TEMPLATE_TIMESTAMP) > build_timestamp_$(TEMPLATE_NAME)
package:
./build_template_rpm $(TEMPLATE_NAME)

Loading…
Cancel
Save