Skip to content

Commit f9123f6

Browse files
committed
FIX: exclude libnss3.so and libnssutil3.so
This is a workaround for probonopd/linuxdeployqt#35
1 parent 32495e7 commit f9123f6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

conanfile.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,10 @@ def _configure_deployqt(self, dist_folder, appdir):
397397
os.path.join(self.source_folder, "build", "common", "wiznote2.desktop"),
398398
os.path.join(appdir, "wiznote.desktop"))
399399
executable = os.path.join(appdir, "usr", "share", "applications", "wiznote.desktop")
400-
options = " ".join(["--appimage-extract-and-run", "-verbose=1", "-appimage",
400+
options = " ".join([
401+
"--appimage-extract-and-run", "-verbose=1", "-appimage",
402+
# Workaround for https://github.com/probonopd/linuxdeployqt/issues/35
403+
"-exclude-libs=libnss3.so,libnssutil3.so",
401404
"-qmake=%s" % os.path.join(qt_bin, "qmake")])
402405
else:
403406
raise Exception("Unsupported platforms: %s" % self.settings.os)

0 commit comments

Comments
 (0)