Skip to content

Commit 0e77c21

Browse files
authored
Merge pull request #113 from robbie01/patch-1
Add /usr/lib64 to unix64 search path
2 parents 507b289 + c4268ed commit 0e77c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLite3-Core/SQLite3Library.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ SQLite3Library >> unix32LibraryName [
753753

754754
{ #category : #'private - accessing' }
755755
SQLite3Library >> unix64LibraryName [
756-
(#('/usr/lib/x86_64-linux-gnu' '/lib/x86_64-linux-gnu' '/usr/lib'),
756+
(#('/usr/lib/x86_64-linux-gnu' '/lib/x86_64-linux-gnu' '/usr/lib64' '/usr/lib'),
757757
((OSEnvironment current at: 'LD_LIBRARY_PATH' ifAbsent: [ '' ]) substrings: ':'))
758758
do: [ :path |
759759
#('libsqlite3.so.0' 'libsqlite3.so') do: [ :libraryName |

0 commit comments

Comments
 (0)