(library_dir)
| 400 | library_dirs = [package_cwd] |
| 401 | |
| 402 | def append_library_dir(library_dir): |
| 403 | if library_dir not in library_dirs: |
| 404 | library_dirs.append(library_dir) |
| 405 | |
| 406 | # Search library paths via pkg-config. This is necessary if the user |
| 407 | # installed libarrow and the other shared libraries manually and they |
no test coverage detected