mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
628 B
Diff
15 lines
628 B
Diff
diff --git a/software/Makefile.linux b/software/Makefile.linux
|
|
index db48aa5..df8b3d2 100644
|
|
--- a/Makefile.linux
|
|
+++ b/Makefile.linux
|
|
@@ -1,6 +1,6 @@
|
|
-GIT_VERSION := $(shell git --no-pager describe --tags --always)
|
|
-GIT_COMMIT := $(shell git rev-parse --verify HEAD)
|
|
-GIT_DATE := $(firstword $(shell git --no-pager show --date=iso-strict --format="%ad" --name-only))
|
|
+GIT_VERSION ?= $(shell git --no-pager describe --tags --always)
|
|
+GIT_COMMIT ?= $(shell git rev-parse --verify HEAD)
|
|
+GIT_DATE ?= $(firstword $(shell git --no-pager show --date=iso-strict --format="%ad" --name-only))
|
|
|
|
PREFIX = $(DESTDIR)/usr/local
|
|
|