From 2138fe42a49a2b88ab3447c24fdf36805c3625ee Mon Sep 17 00:00:00 2001 From: mintsuki Date: Sun, 24 Oct 2021 17:22:22 +0200 Subject: [PATCH] build: Fix wrong path for version timestamp --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3525690f..687b0c0e 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ export PATH := $(shell pwd)/toolchain/bin:$(PATH) NCPUS := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 1) -export LIMINE_VERSION := $(shell cat ../version 2>/dev/null || ( git describe --exact-match --tags `git log -n1 --pretty='%h'` 2>/dev/null || git log -n1 --pretty='%h' ) ) +export LIMINE_VERSION := $(shell cat version 2>/dev/null || ( git describe --exact-match --tags `git log -n1 --pretty='%h'` 2>/dev/null || git log -n1 --pretty='%h' ) ) export LIMINE_COPYRIGHT := $(shell grep Copyright LICENSE.md)