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)
Jan 16 2024, 5:38 AM
Unknown Object (File)
Dec 20 2023, 3:23 AM
Unknown Object (File)
Dec 5 2023, 6:29 PM
Unknown Object (File)
Dec 3 2023, 1:26 AM
Unknown Object (File)
Dec 1 2023, 8:10 PM
Unknown Object (File)
Nov 25 2023, 4:39 PM
Unknown Object (File)
Nov 14 2023, 7:32 PM
Unknown Object (File)
Aug 11 2023, 11:31 PM
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.