From b97b0f2c06ff491901d1d204262d56cae10dca5a Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 20 May 2026 08:25:04 +0200 Subject: [PATCH] macOS: fix TC_VERSION extraction in makefiles --- src/Main/Main.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main/Main.make b/src/Main/Main.make index 846c5662..b73a1cb1 100755 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -106,7 +106,7 @@ FUSE_LIBS = $(shell $(PKG_CONFIG) $(VC_FUSE_PACKAGE) --libs) #------ Executable ------ -export TC_VERSION := $(shell awk -F '"' '/^[[:space:]]*#define[[:space:]]+VERSION_STRING[[:space:]]*"/ { print $$2; exit }' ../Common/Tcdefs.h) +export TC_VERSION := $(shell awk -F '"' '/^[[:space:]]*\#define[[:space:]]+VERSION_STRING[[:space:]]*"/ { print $$2; exit }' ../Common/Tcdefs.h) #------ Linux package naming ------ ifeq "$(PLATFORM)" "Linux"