diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-06-13 23:34:04 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-06-13 23:34:04 +0200 |
commit | 440df023552a2a7dd9601067b96769d1eebf8506 (patch) | |
tree | 5582231874e4802d8887a05353de194a673dbec1 /src/Main/Main.make | |
parent | 4cc203e7b31703e7b5f905dc88805291c4a6dfab (diff) | |
download | VeraCrypt-440df023552a2a7dd9601067b96769d1eebf8506.tar.gz VeraCrypt-440df023552a2a7dd9601067b96769d1eebf8506.zip |
Linux: Fix compatibility of generic installers with old Linux distros
In old Linux distributions, tar command doesn't support
"--keep-directory-symlink" so we now dynamically detect if this switch
is support and then we use it if it is available
Diffstat (limited to 'src/Main/Main.make')
-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 57e6dccf..79478592 100755 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -284,7 +284,7 @@ package: prepare @echo "VERSION=$(TC_VERSION)" >> $(INTERNAL_INSTALLER_NAME) @echo "PACKAGE_TYPE=tar" >> $(INTERNAL_INSTALLER_NAME) @echo "PACKAGE_NAME=$(PACKAGE_NAME)" >> $(INTERNAL_INSTALLER_NAME) - @echo "PACKAGE_START=1107" >> $(INTERNAL_INSTALLER_NAME) + @echo "PACKAGE_START=1111" >> $(INTERNAL_INSTALLER_NAME) @echo "INSTALLER_TYPE=$(INSTALLER_TYPE)" >> $(INTERNAL_INSTALLER_NAME) @cat $(BASE_DIR)/Setup/Linux/veracrypt_install_template.sh >> $(INTERNAL_INSTALLER_NAME) |