Page MenuHomeFreeBSD

Use install's relative symlink feature to create uniquefiles.
ClosedPublic

Authored by mat on Apr 14 2017, 2:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Jul 26, 10:35 AM
Unknown Object (File)
Jun 4 2026, 6:42 PM
Unknown Object (File)
Jun 3 2026, 7:55 PM
Unknown Object (File)
Jun 3 2026, 7:11 PM
Unknown Object (File)
Jun 1 2026, 12:49 AM
Unknown Object (File)
May 10 2026, 5:07 PM
Unknown Object (File)
May 6 2026, 9:11 PM
Unknown Object (File)
May 1 2026, 9:34 AM
Subscribers
None

Details

Summary

Before, the symlinks were created as absolute paths, so it would look like this:

# ls -l /usr/local/bin/
[...]
lrwxr-xr-x  1 root  wheel      12 Apr 14 14:28 autopep8 -> /usr/local/bin/autopep8-2.7
-rwxr-xr-x  1 root  wheel     395 Apr 14 14:28 autopep8-2.7
[...]

After, the symlinks are created with relative paths:

# ls -l /usr/local/bin/
[...]
lrwxr-xr-x  1 root  wheel      12 Apr 14 14:28 autopep8 -> autopep8-2.7
-rwxr-xr-x  1 root  wheel     395 Apr 14 14:28 autopep8-2.7
[...]

Diff Detail

Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 8730
Build 9073: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.Apr 14 2017, 2:50 PM
This revision was automatically updated to reflect the committed changes.