summaryrefslogtreecommitdiff
path: root/rescue
diff options
context:
space:
mode:
authorngie <ngie@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2017-03-20 22:33:22 +0000
committerngie <ngie@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2017-03-20 22:33:22 +0000
commit30c13bcdaa85707800c062170ed4dd75de9eb5d9 (patch)
treeee955ed5a9cdc4f9afcca404b2d3dad0b4f70a8b /rescue
parentbfd909b5402a9d06960402c96dcae67909ee23ba (diff)
downloadfreebsd-30c13bcdaa85707800c062170ed4dd75de9eb5d9.tar.gz
freebsd-30c13bcdaa85707800c062170ed4dd75de9eb5d9.tar.bz2
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 git-svn-id: http://svn.freebsd.org/base/head@315654 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
Diffstat (limited to 'rescue')
-rw-r--r--rescue/rescue/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile
index 700f3520b4e..454dfcdfef6 100644
--- a/rescue/rescue/Makefile
+++ b/rescue/rescue/Makefile
@@ -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"