Some libraries (e.g. ncurses) install links to the main library for
backwards compatibilty. This change ensures that those links are in the
dev package since the files being linked to are in that package.
PR: 249143
MFC after: 1 week
Differential D41841
pkgbase: put library links and symlinks in the -dev package dfr on Sep 13 2023, 10:23 AM. Authored by Tags None Referenced Files
Details Some libraries (e.g. ncurses) install links to the main library for PR: 249143 Run 'make packages', manually inspect packages to see that the symlinks are in the correct package.
Diff Detail
Event TimelineComment Actions I wonder if something like LINKTAGS=dev and then .if defined(LINKTAGS) ${INSTALL_LINK} ${TAG_ARGS:D${TAG_ARGS},${LINKTAGS}} ${DESTDIR}${s} ${DESTDIR}${t} is more clear? Comment Actions Use a new variable, LINKTAGS, to make the interface between bsd.lib.mk and bsd.links.mk clearer. |