summaryrefslogtreecommitdiff
path: root/rescue
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-20 22:33:22 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-20 22:33:22 +0000
commitf3e05661e1775d353b9e4ea1cd8b22bc27e3acbb (patch)
treeee955ed5a9cdc4f9afcca404b2d3dad0b4f70a8b /rescue
parentc1e968fb6297591a95711fea86f694b9f3b43e88 (diff)
downloadsrc-test2-f3e05661e1775d353b9e4ea1cd8b22bc27e3acbb.tar.gz
src-test2-f3e05661e1775d353b9e4ea1cd8b22bc27e3acbb.zip
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
Notes
Notes: svn path=/head/; revision=315654
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 700f3520b4e7..454dfcdfef67 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"