VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Main.make
diff options
context:
space:
mode:
authorUnit 193 <32967979+Unit193@users.noreply.github.com>2023-08-21 05:24:25 -0400
committerGitHub <noreply@github.com>2023-08-21 11:24:25 +0200
commitd49c75370ae6ffcec4b3d11cd959fe7d251ef67c (patch)
tree87400080db5b30f47efcea4f79c90305a1a1ccf0 /src/Main/Main.make
parentfd0d2e3353ede2ca1acaf0eca30822dc44995e0d (diff)
downloadVeraCrypt-d49c75370ae6ffcec4b3d11cd959fe7d251ef67c.tar.gz
VeraCrypt-d49c75370ae6ffcec4b3d11cd959fe7d251ef67c.zip
Allow cross compilation. (#1182)
Diffstat (limited to 'src/Main/Main.make')
-rwxr-xr-xsrc/Main/Main.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make
index 84f9d755..90b8b126 100755
--- a/src/Main/Main.make
+++ b/src/Main/Main.make
@@ -102,7 +102,7 @@ endif
#------ FUSE configuration ------
-FUSE_LIBS = $(shell pkg-config fuse --libs)
+FUSE_LIBS = $(shell $(PKG_CONFIG) fuse --libs)
#------ Executable ------
@@ -159,7 +159,7 @@ endif
$(APPNAME): $(LIBS) $(OBJS)
@echo Linking $@
- $(CXX) -o $(APPNAME) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) $(LFLAGS)
+ $(CXX) -o $(APPNAME) $(OBJS) $(LIBS) $(AYATANA_LIBS) $(FUSE_LIBS) $(WX_LIBS) $(LFLAGS)
ifeq "$(TC_BUILD_CONFIG)" "Release"
ifndef NOSTRIP