diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-02 17:09:56 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-02 17:12:36 +0100 |
commit | ad9b40d5991688b60f446c4bc44537668df5dbca (patch) | |
tree | dd121a2981c965b4b5e405e773c9a4afd81bb03c /src/Main/Main.make | |
parent | 271d39d94277ab3c2a34faeed38caaa0af05dd2f (diff) | |
download | VeraCrypt-ad9b40d5991688b60f446c4bc44537668df5dbca.tar.gz VeraCrypt-ad9b40d5991688b60f446c4bc44537668df5dbca.zip |
Linux: solve link error on recent Ubuntu when using shared wxWidgets.
Diffstat (limited to 'src/Main/Main.make')
-rw-r--r-- | 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 02577d8d..39221b46 100644 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -123,7 +123,7 @@ endif $(APPNAME): $(LIBS) $(OBJS) @echo Linking $@ - $(CXX) -o $(APPNAME) $(LFLAGS) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) + $(CXX) -o $(APPNAME) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) $(LFLAGS) ifeq "$(TC_BUILD_CONFIG)" "Release" ifndef NOSTRIP |