Replace the @ symlink in builds with ${SYSDIR} and conditionally set
${SYSDIR} in the one place where it seems to matter.
Details
Details
- Reviewers
- None
- Commits
- rS274184: Retire the '@' symlink. It isn't really needed and causes more
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
While it's not the described point of the diff, I noticed a missed opportunity to use ${SYSDIR} in sys/modules/svr4/Makefile in the .PATH definition.
Comment Actions
Yes. That turns out to be a problem, not only there, but from the other places I did it. It isn't defined in the world / single module case, so make winds up not being able to find the header files, which is why I did the SYSDIR ?= bit where I did the substitution. Rather than propagate that widely, I thought I'd try to be minimal about it.