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