From 779d755eac7847dd722ea1f0ba4385edefc799b7 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 18 Jun 2024 23:36:16 +0200 Subject: fix: Correct missing 'endif' in Main.make for MacOSX section Replaced an incorrect 'end' statement with 'endif' in the MacOSX-specific section of the Main.make file. This resolves the make error caused by an unclosed conditional block. --- src/Main/Main.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Main/Main.make') diff --git a/src/Main/Main.make b/src/Main/Main.make index c811f74c..9f907aef 100755 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -229,7 +229,7 @@ ifneq ("$(LOCAL_DEVELOPMENT_BUILD)","true") else # copy the unsigned package to the expected location cp "$(BASE_DIR)/Setup/MacOSX/VeraCrypt $(TC_VERSION).pkg" $(BASE_DIR)/Setup/MacOSX/VeraCrypt_$(TC_VERSION).pkg -end +endif rm -f $(APPNAME)_$(TC_VERSION).dmg endif rm -f "$(BASE_DIR)/Setup/MacOSX/template.dmg" -- cgit v1.2.3