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
This commit is contained in:
parent
1c7006b829
commit
6cbac4b4e0
4
Makefile
4
Makefile
@ -33,7 +33,7 @@ export TEMPLATE_SCRIPTS
|
|||||||
export DISTRIBUTION
|
export DISTRIBUTION
|
||||||
|
|
||||||
VERSION := $(shell cat version)
|
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: help template-name prepare package rpms rootimg-build
|
||||||
.PHONY: update-repo-templates-itl update-repo-templates-community
|
.PHONY: update-repo-templates-itl update-repo-templates-community
|
||||||
@ -48,7 +48,7 @@ template-name:
|
|||||||
|
|
||||||
prepare:
|
prepare:
|
||||||
@echo "Building template: $(TEMPLATE_NAME)"
|
@echo "Building template: $(TEMPLATE_NAME)"
|
||||||
@echo $(TIMESTAMP) > build_timestamp_$(TEMPLATE_NAME)
|
@echo $(TEMPLATE_TIMESTAMP) > build_timestamp_$(TEMPLATE_NAME)
|
||||||
|
|
||||||
package:
|
package:
|
||||||
./build_template_rpm $(TEMPLATE_NAME)
|
./build_template_rpm $(TEMPLATE_NAME)
|
||||||
|
Loading…
Reference in New Issue
Block a user