mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix linking /rescue/rescue to multiple programs in usr.bin after r315113
I meant for the line that conditionally added in /usr/bin/nc support to be `+=', not `=`. This restores hardlinks for all programs in usr.bin specified before nc(1), e.g., bunzip2 and tar. Reported by: Andrzej Tobola <ato@iem.pw.edu.pl> Submitted by: Scott Allendorf <scott-allendorf@uiowa.edu> Pointyhat to: ngie MFC after: 3 days Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
c1e968fb62
commit
f3e05661e1
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ CRUNCH_LIBS+= -lcrypto
|
|||
CRUNCH_LIBS+= -lmd
|
||||
|
||||
.if ${MK_NETCAT} != "no"
|
||||
CRUNCH_PROGS_usr.bin= nc
|
||||
CRUNCH_PROGS_usr.bin+= nc
|
||||
.endif
|
||||
|
||||
.if ${MK_VI} != "no"
|
||||
|
|
|
|||
Loading…
Reference in a new issue