Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#45518 - [perl] broken symlink in package
Attached to Project:
Arch Linux
Opened by Hussam Al-Tayeb (hussam) - Wednesday, 01 July 2015, 12:52 GMT
Last edited by Florian Pritz (bluewind) - Tuesday, 15 December 2015, 09:11 GMT
Opened by Hussam Al-Tayeb (hussam) - Wednesday, 01 July 2015, 12:52 GMT
Last edited by Florian Pritz (bluewind) - Tuesday, 15 December 2015, 09:11 GMT
|
DetailsThe perl PKGBUILD contains the following command:
ln -sf s2p psed The package doesn't contain a file called s2p so the symlink is broken. |
This task depends upon
Closed by Florian Pritz (bluewind)
Tuesday, 15 December 2015, 09:11 GMT
Reason for closing: Fixed
Additional comments about closing: perl 5.22.1-1
Tuesday, 15 December 2015, 09:11 GMT
Reason for closing: Fixed
Additional comments about closing: perl 5.22.1-1
It will build just psed and s2p into /usr/bin/vendor_perl. If you have existing scripts that depend on those two being in /usr/bin/core_perl, just:
sudo rm /usr/bin/core_perl/{psed,s2p}
sudo ln -sfv /usr/bin/vendor_perl/{psed,s2p} /usr/bin/core_perl
Though your symlinks will probably have to be redone once the perl package is updated. I will update the PKGBUILD to build into /usr/bin/core_perl/ if it's an issue after the dead link has been removed.