svn commit: r315654 - head/rescue/rescue

Ngie Cooper ngie at FreeBSD.org
Mon Mar 20 22:33:23 UTC 2017


Author: ngie
Date: Mon Mar 20 22:33:22 2017
New Revision: 315654
URL: https://svnweb.freebsd.org/changeset/base/315654

Log:
  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 at iem.pw.edu.pl>
  Submitted by:	Scott Allendorf <scott-allendorf at uiowa.edu>
  Pointyhat to:	ngie
  MFC after:	3 days
  Sponsored by:	Dell EMC Isilon

Modified:
  head/rescue/rescue/Makefile

Modified: head/rescue/rescue/Makefile
==============================================================================
--- head/rescue/rescue/Makefile	Mon Mar 20 22:20:17 2017	(r315653)
+++ head/rescue/rescue/Makefile	Mon Mar 20 22:33:22 2017	(r315654)
@@ -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"


More information about the svn-src-head mailing list