svn commit: r315781 - stable/10/rescue/rescue
Ngie Cooper
ngie at FreeBSD.org
Thu Mar 23 04:47:45 UTC 2017
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
More information about the svn-src-stable
mailing list