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)
Thu, Sep 10, 6:30 AM
Unknown Object (File)
Sun, Sep 6, 8:57 PM
Unknown Object (File)
Sun, Sep 6, 6:16 AM
Unknown Object (File)
Sun, Sep 6, 12:20 AM
Unknown Object (File)
Fri, Sep 4, 9:24 PM
Unknown Object (File)
Fri, Sep 4, 10:59 AM
Unknown Object (File)
Fri, Sep 4, 4:10 AM
Unknown Object (File)
Fri, Sep 4, 12:24 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

Repository
rP FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.