VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Main.make
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-18 23:36:16 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-06-18 23:36:16 +0200
commit779d755eac7847dd722ea1f0ba4385edefc799b7 (patch)
treed1cbe6410615ff4639c8b9c1c3db55777922d001 /src/Main/Main.make
parent688086011d05934bc45c79933091941ff67c6d24 (diff)
downloadVeraCrypt-779d755eac7847dd722ea1f0ba4385edefc799b7.tar.gz
VeraCrypt-779d755eac7847dd722ea1f0ba4385edefc799b7.zip
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.
Diffstat (limited to 'src/Main/Main.make')
-rwxr-xr-xsrc/Main/Main.make2
1 files changed, 1 insertions, 1 deletions
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"