We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This exception is raised when running scancode-toolkit on Debian-based distro running on armv7l using the system provided plugins.
The packages 7zip, libmagic1, libmagic-mgc, and libarchive13 have been installed.
Exception: libmagic not found. Please refer to the scancode-toolkit documentation on how to install libmagic for your operating system.
The exception is caused by https://github.com/aboutcode-org/scancode-plugins/blob/main/builtins/typecode_libmagic_system_provided/src/typecode_libmagic/__init__.py#L58 where the generated path to the libmagic lib directory has the value /usr/lib/armv7l-linux-gnu, but the actual path to the libmagic lib directory on the system is /usr/lib/arm-linux-gnueabihf.
/usr/lib/armv7l-linux-gnu
/usr/lib/arm-linux-gnueabihf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This exception is raised when running scancode-toolkit on Debian-based distro running on armv7l using the system provided plugins.
The packages 7zip, libmagic1, libmagic-mgc, and libarchive13 have been installed.
The exception is caused by https://github.com/aboutcode-org/scancode-plugins/blob/main/builtins/typecode_libmagic_system_provided/src/typecode_libmagic/__init__.py#L58 where the generated path to the libmagic lib directory has the value
/usr/lib/armv7l-linux-gnu
, but the actual path to the libmagic lib directory on the system is/usr/lib/arm-linux-gnueabihf
.The text was updated successfully, but these errors were encountered: