Page MenuHomeFreeBSD

Use on crypto.x and rpc.x from the source tree.
ClosedPublic

Authored by brooks on May 19 2016, 5:26 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 27 2024, 10:26 AM
Unknown Object (File)
Feb 27 2024, 10:13 AM
Unknown Object (File)
Feb 15 2024, 3:41 AM
Unknown Object (File)
Nov 10 2023, 6:44 AM
Unknown Object (File)
Nov 8 2023, 6:41 AM
Unknown Object (File)
Nov 7 2023, 9:56 PM
Unknown Object (File)
Nov 5 2023, 5:21 PM
Unknown Object (File)
Oct 19 2023, 7:40 PM
Subscribers

Details

Summary

During a typical buildworld, DESTDIR was unset so the installed copy was
used which is obviously wrong. Recently, installworld started failing
for me on with an inability to check that dependent generated files were
up to date when the files had not yet been installed. It's not clear to
me how this ever worked or was ever the right thing.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

brooks retitled this revision from to Use on crypto.x and rpc.x from the source tree..
brooks updated this object.
brooks edited the test plan for this revision. (Show Details)
brooks added a reviewer: bdrewery.

I once asked Peter about this and I think he suggested it stay as-is. We should get more discussion on this first I think to ensure we are not breaking any workflows as I have never used yp.

I have no idea why this suddenly started failing in our tree. I installed the last couple batches of security updates for 10.2, rebooted, and my builds started failing in installworld. This code has been around forever (1990s).

Found the problem. I'd added a FILES+= line in bsd.lib.mk. I've not figured out exactly how it's breaking things, but it definitely breaks quite a few.

I still think using source files from the installed system is a bad idea...

I agree, just want to be sure it doesn't break yp/rpc expectations. It has weird things like /var/yp/Makefile documented in yp(8) that may mean installworld could lose local changes here. Unsure.

I think you're thinking of the bizzare relic where /var/yp/Makefile is a local config file. So long as it's installed as /var/yp/Makefile.dist and not clobbering /var/yp/Makefile (which would be just as evil as installing a stock /etc/master.passwd as a result of 'installworld') then it should be fine.

/var/yp/Makefile is evaluated on the host and is run in /var/yp from the yp* daemons and by the admin. It shouldn't have any build time contents.

bdrewery edited edge metadata.
This revision is now accepted and ready to land.Jun 1 2016, 6:26 PM
This revision was automatically updated to reflect the committed changes.