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#17402 - [perl] bin path in /etc/profile.d/perlbin.sh points to non-existant directories
Attached to Project:
Arch Linux
Opened by Alex Matviychuk (alexmat) - Sunday, 06 December 2009, 05:59 GMT
Last edited by Kevin Piche (kpiche) - Sunday, 09 May 2010, 03:44 GMT
Opened by Alex Matviychuk (alexmat) - Sunday, 06 December 2009, 05:59 GMT
Last edited by Kevin Piche (kpiche) - Sunday, 09 May 2010, 03:44 GMT
|
DetailsDescription:
perl bin path in /etc/profile.d/perlbin.sh points to non-existant directories These directories don't exist yet they are specified on the users path: /usr/bin/perlbin/site /usr/bin/perlbin/vendor May be related to: http://bugs.archlinux.org/task/13808 |
This task depends upon
Closed by Kevin Piche (kpiche)
Sunday, 09 May 2010, 03:44 GMT
Reason for closing: Implemented
Additional comments about closing: Implemented in perl 5.12.0-1.
Sunday, 09 May 2010, 03:44 GMT
Reason for closing: Implemented
Additional comments about closing: Implemented in perl 5.12.0-1.
See http://bbs.archlinux.org/viewtopic.php?id=76528
This is something totally possible to fix before deciding on 13808, you could just comment & replace the entry temporarily in perlbin.sh before making the pkg...
Edit:
Independently to http://bugs.archlinux.org/task/13808 -- write this into the perlbin.sh:
for add in /usr/bin/perlbin/core /usr/bin/perlbin/site /usr/bin/perlbin/vendor; do
[[ -d $add ]] && PATH="$PATH:$add"
done