Opened 16 years ago
Closed 16 years ago
#200 closed defect (fixed)
ncurses overwrites its configuration program
Reported by: | tobias | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | BOOK | Version: | CLFS Standard GIT |
Keywords: | ncurses config | Cc: |
Description
If ncurses is configured with --enable-widec, the configuration program will be called "ncursesw5-config". In multilib builds it's taken care of, but following line, which is stated in 10.20 (ncurses-5.7) overwrites ncursesw5-config with a link to ncurses5-config that doesn't exist:
ln -sfv ncurses5-config /usr/bin/ncursesw5-config
Fix is simple: change arguments :)
ln -sfv ncursesw5-config /usr/bin/ncurses5-config
Note:
See TracTickets
for help on using tickets.
Thank you. Fixed in r4449