diff options
author | Wojtek Kosior <koszko@koszko.org> | 2023-09-05 18:10:17 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2023-09-05 18:10:17 +0200 |
commit | 2793350b2d5a9ed22b92ac44bb30d2e85b16704a (patch) | |
tree | a0989847339141e2c1438b818560576c473d7786 /Makefile | |
parent | de2ece0ec785b7187e24fa43d1c00465a290443d (diff) | |
download | haketilo-hydrilla-2793350b2d5a9ed22b92ac44bb30d2e85b16704a.tar.gz haketilo-hydrilla-2793350b2d5a9ed22b92ac44bb30d2e85b16704a.zip |
Make it easy to override Make variables with the guix command to usekoszko
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,14 +4,14 @@ # # Available under the terms of Creative Commons Zero v1.0 Universal. -GUIX := guix +GUIX ?= guix # Almost all commands in this Makefilo are run through `guix time-machine` with # Guix revision fixed to the one from the commit below. This ensures that the # same working environment is always used. -GUIX_COMMIT := a86979b41a49a8fcdaa887970ba594dbba701226 +GUIX_COMMIT ?= a86979b41a49a8fcdaa887970ba594dbba701226 -GUIX_TM = $(GUIX) time-machine --commit=$(GUIX_COMMIT) -- +GUIX_TM ?= $(GUIX) time-machine --commit=$(GUIX_COMMIT) -- GUIX_FULL_PACKAGE_FLAGS = -f guix.scm GUIX_MINIMAL_PACKAGE_FLAGS = -e '(@ (hydrilla-base) hydrilla-without-haketilo)' -L ./guix-module-dir |