Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Mar 2017 04:47:43 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r315781 - stable/10/rescue/rescue
Message-ID:  <201703230447.v2N4lhDI005937@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Thu Mar 23 04:47:43 2017
New Revision: 315781
URL: https://svnweb.freebsd.org/changeset/base/315781

Log:
  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

Modified:
  stable/10/rescue/rescue/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/rescue/rescue/Makefile
==============================================================================
--- stable/10/rescue/rescue/Makefile	Thu Mar 23 04:43:04 2017	(r315780)
+++ stable/10/rescue/rescue/Makefile	Thu Mar 23 04:47:43 2017	(r315781)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703230447.v2N4lhDI005937>