From 4bcbaa45491f034293ab5461fb18499c09b9b4a4 Mon Sep 17 00:00:00 2001 From: Squibid Date: Fri, 14 Nov 2025 10:54:47 -0500 Subject: [PATCH] re-organize version info to be in the most likely enabled order --- config.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.mk b/config.mk index aaff33a..2614a75 100644 --- a/config.mk +++ b/config.mk @@ -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