FS#57276 - [ncurses] Link scripts broken in ncurses-6.1-2

Attached to Project: Arch Linux
Opened by Bastian Beranek (totsilence) - Monday, 29 January 2018, 16:00 GMT
Last edited by Bartłomiej Piotrowski (Barthalion) - Monday, 29 January 2018, 16:05 GMT
Task Type Bug Report
Category Packages: Testing
Status Closed
Assigned To No-one
Architecture All
Severity Medium
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details


$ cat /usr/lib/libncurses.so
INPUT(-l${lib}w)

which is because of this change:

# fool packages looking to link to non-wide-character ncurses libraries
for lib in ncurses ncurses++ form panel menu; do
- echo "INPUT(-l${lib}w)" > "$pkgdir/usr/lib/lib${lib}.so"
+ echo 'INPUT(-l${lib}w)' > "$pkgdir/usr/lib/lib${lib}.so"
ln -s ${lib}w.pc "$pkgdir/usr/lib/pkgconfig/${lib}.pc"
done

(svn rev 315530 of ncurses PKGBUILD)

${lib} is not expanded by bash because it is used in single-quotes.
This task depends upon

Closed by  Bartłomiej Piotrowski (Barthalion)
Monday, 29 January 2018, 16:05 GMT
Reason for closing:  Fixed
Additional comments about closing:  ncurses 6.1-3
Comment by Bartłomiej Piotrowski (Barthalion) - Monday, 29 January 2018, 16:05 GMT
Uh, silly me. Fixed one bug, introduced another…

Loading...