re-organize version info to be in the most likely enabled order

This commit is contained in:
Squibid 2025-11-14 10:54:47 -05:00
parent 1f96830f10
commit 4bcbaa4549
Signed by: squibid
GPG key ID: BECE5684D3C4005D

View file

@ -35,6 +35,11 @@ ifeq ($(GITHASH),)
else
VERSION := $(VERSION)"\\ngit hashing enabled"
endif
ifeq ($(EXPLAIN),)
VERSION := $(VERSION)"\\nexplinations disabled"
else
VERSION := $(VERSION)"\\nexplinations enabled"
endif
ifeq ($(ERR),)
VERSION := $(VERSION)"\\nerrors disabled"
else
@ -45,10 +50,5 @@ ifeq ($(PERF),)
else
VERSION := $(VERSION)"\\nperformance logging enabled"
endif
ifeq ($(EXPLAIN),)
VERSION := $(VERSION)"\\nexplinations disabled"
else
VERSION := $(VERSION)"\\nexplinations enabled"
endif
CC = cc