mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
Use proper convention for relative path linking
The change made ine835ee68e1did not follow the convention for relative path symlinks. Per the convention, paths be prefixed with `${BINDIR}`, not `/bin/`. `${BINDIR}` can be modified from the Makefile, on the command line, or in the environment. This convention is the canonically correct way to do things. This follows the convention used in `bin/pkill/Makefile`, `bin/timeout/Makefile`, etc. MFC after: 1 week MFC with:f05948d4e9MFC with:e835ee68e1Requested by: jrtc27, kevans
This commit is contained in:
parent
a76629cb03
commit
22dc8901a7
1 changed files with 1 additions and 1 deletions
|
|
@ -3,6 +3,6 @@ PROG= cpuset
|
|||
|
||||
LIBADD= jail
|
||||
|
||||
SYMLINKS+= ../../bin/cpuset /usr/bin/cpuset
|
||||
SYMLINKS+= ../..${BINDIR}/cpuset /usr/bin/cpuset
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue