diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-18 23:36:16 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-06-18 23:36:16 +0200 |
commit | 779d755eac7847dd722ea1f0ba4385edefc799b7 (patch) | |
tree | d1cbe6410615ff4639c8b9c1c3db55777922d001 | |
parent | 688086011d05934bc45c79933091941ff67c6d24 (diff) | |
download | VeraCrypt-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.
-rwxr-xr-x | src/Main/Main.make | 2 |
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" |