Date: Thu, 23 Mar 2017 04:47:57 +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-11@freebsd.org Subject: svn commit: r315782 - stable/11/rescue/rescue Message-ID: <201703230447.v2N4lvxY005990@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Thu Mar 23 04:47:57 2017 New Revision: 315782 URL: https://svnweb.freebsd.org/changeset/base/315782 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/11/rescue/rescue/Makefile Directory Properties: stable/11/ (props changed) Modified: stable/11/rescue/rescue/Makefile ============================================================================== --- stable/11/rescue/rescue/Makefile Thu Mar 23 04:47:43 2017 (r315781) +++ stable/11/rescue/rescue/Makefile Thu Mar 23 04:47:57 2017 (r315782) @@ -214,7 +214,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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703230447.v2N4lvxY005990>