build: Pull actual branch name from git rather than hardcoding 'trunk'

This commit is contained in:
mintsuki 2021-04-02 16:19:56 +02:00
parent dce8d312ea
commit 2bdd297c3d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ COM_OUTPUT = false
E9_OUTPUT = false E9_OUTPUT = false
BUILD_ID := $(shell dd if=/dev/urandom count=8 bs=1 | od -An -t x8 | sed 's/^ /0x/') BUILD_ID := $(shell dd if=/dev/urandom count=8 bs=1 | od -An -t x8 | sed 's/^ /0x/')
LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` || ( git log -n1 --pretty='%h' && echo -n "(trunk)" ) ) LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` || ( git log -n1 --pretty='%h' && echo -n "(`git branch --show-current`)" ) )
WERROR = -Werror WERROR = -Werror
CFLAGS = -O3 -g -pipe -Wall -Wextra $(WERROR) CFLAGS = -O3 -g -pipe -Wall -Wextra $(WERROR)
S2CFLAGS = -Os -g -pipe -Wall -Wextra $(WERROR) S2CFLAGS = -Os -g -pipe -Wall -Wextra $(WERROR)