Page MenuHomeFreeBSD

liblua: ensure that "require" will fail in bootstrap flua
ClosedPublic

Authored by emaste on Apr 28 2020, 11:48 PM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 2 2025, 7:14 PM
Unknown Object (File)
Dec 16 2024, 8:21 AM
Unknown Object (File)
Dec 16 2024, 8:16 AM
Unknown Object (File)
Dec 7 2024, 3:02 PM
Unknown Object (File)
Nov 17 2024, 1:58 AM
Unknown Object (File)
Nov 13 2024, 10:54 AM
Unknown Object (File)
Nov 4 2024, 6:29 AM
Unknown Object (File)
Nov 4 2024, 6:29 AM
Subscribers
None

Details

Summary

We do not want to support bootstrapping lua modules, so ensure that require will fail by providing a nonexistent path.

Diff Detail

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

Event Timeline

emaste created this revision.
kevans added inline comments.
lib/liblua/Makefile
31 โ†—(On Diff #71133)

This should probably read ?.so to be consistent with the name, but given that we're intentionally clobbering these to something that won't resolve, I won't insist.

This revision is now accepted and ready to land.Apr 29 2020, 12:59 AM
lib/liblua/Makefile
31 โ†—(On Diff #71133)

Yes good point, I just cut and pasted.

We could actually drop the ? part completely, just /nonexistent and it would fail just as well, but the ? may give a necessary clue via dtrace/ktrace if bootstrap does break from this.