mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 20:36:44 +00:00
add /usr/lib64 as possible location for linux pcsc lib
This commit is contained in:
parent
e23c1b3872
commit
a18c24e19f
1 changed files with 2 additions and 1 deletions
|
@ -33,7 +33,8 @@ public abstract class CardApi {
|
|||
new File("/usr/lib/libpcsclite.so.1"),
|
||||
new File("/usr/local/lib/libpcsclite.so.1"),
|
||||
new File("/lib/x86_64-linux-gnu/libpcsclite.so.1"),
|
||||
new File("/lib/aarch64-linux-gnu/libpcsclite.so.1")};
|
||||
new File("/lib/aarch64-linux-gnu/libpcsclite.so.1"),
|
||||
new File("/usr/lib64/libpcsclite.so.1")};
|
||||
|
||||
private static boolean initialized;
|
||||
|
||||
|
|
Loading…
Reference in a new issue