From 4390660dea7e1f953a59d72b922987378885c0e0 Mon Sep 17 00:00:00 2001 From: ngie Date: Thu, 23 Mar 2017 04:47:43 +0000 Subject: [PATCH] MFC r315654: 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. Pointyhat to: ngie git-svn-id: svn://svn.freebsd.org/base/stable/10@315781 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- rescue/rescue/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 67414f9f0..2a785426e 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -220,7 +220,7 @@ CRUNCH_LIBS+= -lcrypto CRUNCH_LIBS+= -lmd .if ${MK_NETCAT} != "no" -CRUNCH_PROGS_usr.bin= nc +CRUNCH_PROGS_usr.bin+= nc .endif CRUNCH_PROGS_usr.bin+= vi -- 2.45.0