build: Pull actual branch name from git rather than hardcoding 'trunk'
This commit is contained in:
parent
dce8d312ea
commit
2bdd297c3d
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user