diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-11-21 18:38:03 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-11-21 21:45:01 +0100 |
commit | 491fed3494ad5fc2e153f415bdf1f9a17503d5d4 (patch) | |
tree | 684023b87f439ac21008c97e18f3404b29fc52e4 /src | |
parent | 5f5b8a15fcd99b8e46d83c21335f2c6955f8aeb8 (diff) | |
download | VeraCrypt-491fed3494ad5fc2e153f415bdf1f9a17503d5d4.tar.gz VeraCrypt-491fed3494ad5fc2e153f415bdf1f9a17503d5d4.zip |
Linux/FreeBSD: Fix calling "make install" without specifying DESTDIR, which should work by installing into /usr
Diffstat (limited to 'src')
-rwxr-xr-x | src/Main/Main.make | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make index 37abaecb..2c11d361 100755 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -269,7 +269,9 @@ endif install: prepare +ifneq "$(DESTDIR)" "" mkdir -p $(DESTDIR) +endif cp -R $(BASE_DIR)/Setup/Linux/usr $(DESTDIR)/ ifeq "$(TC_BUILD_CONFIG)" "Release" @@ -321,7 +323,9 @@ endif install: prepare +ifneq "$(DESTDIR)" "" mkdir -p $(DESTDIR) +endif cp -R $(BASE_DIR)/Setup/FreeBSD/usr $(DESTDIR)/. ifeq "$(TC_BUILD_CONFIG)" "Release" |