Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use more direct logic for avoiding superfluous symlinks in libgcc output
These symlinks should go into `gcc_impl_{{ cross_target_platform }}`, so we need to delete them in libgcc-devel, which gets built first. The more elegant ``` find ${PREFIX}/${CHOST}/lib ! -name libgcc_s.so* -type l -or -type f -exec rm -f '{}' + ``` should only delete libs and files NOT named like libgcc_s.so.*, but somehow ends up deleting the base folder, leading to: ``` find: ‘${PREFIX}/${CHOST}/lib’: No such file or directory ```
- Loading branch information