Skip to content

Commit

Permalink
FIX: exclude libnss3.so and libnssutil3.so
Browse files Browse the repository at this point in the history
This is a workaround for probonopd/linuxdeployqt#35
  • Loading branch information
altairwei committed Feb 10, 2020
1 parent 32495e7 commit f9123f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,10 @@ def _configure_deployqt(self, dist_folder, appdir):
os.path.join(self.source_folder, "build", "common", "wiznote2.desktop"),
os.path.join(appdir, "wiznote.desktop"))
executable = os.path.join(appdir, "usr", "share", "applications", "wiznote.desktop")
options = " ".join(["--appimage-extract-and-run", "-verbose=1", "-appimage",
options = " ".join([
"--appimage-extract-and-run", "-verbose=1", "-appimage",
# Workaround for https://github.com/probonopd/linuxdeployqt/issues/35
"-exclude-libs=libnss3.so,libnssutil3.so",
"-qmake=%s" % os.path.join(qt_bin, "qmake")])
else:
raise Exception("Unsupported platforms: %s" % self.settings.os)
Expand Down

0 comments on commit f9123f6

Please sign in to comment.