From owner-svn-src-head@freebsd.org Tue Mar 7 05:29:36 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6BB2D0146F; Tue, 7 Mar 2017 05:29:36 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A25F1661; Tue, 7 Mar 2017 05:29:36 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id v275TYnm092594; Mon, 6 Mar 2017 21:29:34 -0800 (PST) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id v275TYnT092593; Mon, 6 Mar 2017 21:29:34 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201703070529.v275TYnT092593@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r314833 - in head: bin/pkill lib/libxo/tests/encoder libexec/rtld-elf share/termcap usr.bin/chpass usr.bin/passwd usr.sbin/bsdinstall/partedit usr.sbin/mailwrapper usr.sbin/nologin In-Reply-To: <21A8D529-BFB9-4774-83FB-5CABD2BC689C@gmail.com> To: "Ngie Cooper (yaneurabeya)" Date: Mon, 6 Mar 2017 21:29:34 -0800 (PST) CC: "Rodney W. Grimes" , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Mar 2017 05:29:36 -0000 -- Start of PGP signed section. > > > On Mar 6, 2017, at 21:10, Rodney W. Grimes wrote: > > > > Author: rgrimes > > Date: Tue Mar 7 05:10:38 2017 > > New Revision: 314833 > > URL: https://svnweb.freebsd.org/changeset/base/314833 > > > > Log: > > Convert absolute links to relative links. > > Style.Makefile(9) has been ignored to produce minimal diffs. > > > > Approved by: grehan (mentor) > > MFC after: 1 week > > > > Modified: > > head/bin/pkill/Makefile > > head/lib/libxo/tests/encoder/Makefile > > head/libexec/rtld-elf/Makefile > > head/share/termcap/Makefile > > head/usr.bin/chpass/Makefile > > head/usr.bin/passwd/Makefile > > head/usr.sbin/bsdinstall/partedit/Makefile > > head/usr.sbin/mailwrapper/Makefile > > head/usr.sbin/nologin/Makefile > > > > Modified: head/bin/pkill/Makefile > > ============================================================================== > > --- head/bin/pkill/Makefile Tue Mar 7 04:51:35 2017 (r314832) > > +++ head/bin/pkill/Makefile Tue Mar 7 05:10:38 2017 (r314833) > > @@ -16,8 +16,8 @@ MLINKS= pkill.1 pgrep.1 > > # keep in mind that pkill is installed to /usr/bin in other > > # OS types, e.g., NetBSD, OpenBSD, Solaris, and Linux. > > # > > -SYMLINKS= ${BINDIR}/pkill /usr/bin/pkill > > -SYMLINKS+= ${BINDIR}/pgrep /usr/bin/pgrep > > +SYMLINKS= ../..${BINDIR}/pkill /usr/bin/pkill > > +SYMLINKS+= ../..${BINDIR}/pgrep /usr/bin/pgrep > > > > .if ${MK_TESTS} != "no" > > SUBDIR+= tests > > > > Modified: head/lib/libxo/tests/encoder/Makefile > > ============================================================================== > > --- head/lib/libxo/tests/encoder/Makefile Tue Mar 7 04:51:35 2017 (r314832) > > +++ head/lib/libxo/tests/encoder/Makefile Tue Mar 7 05:10:38 2017 (r314833) > > @@ -8,7 +8,7 @@ SHLIB_NAME= libenc_test.so > > > > LIBDIR= ${TESTSBASE}/lib/libxo > > > > -SYMLINKS+= ${LIBDIR}/${SHLIB_NAME} /usr/lib/libxo/encoder/test.enc > > +SYMLINKS+= ../../../tests/lib/libxo/${SHLIB_NAME} /usr/lib/libxo/encoder/test.enc > > This change breaks setting TESTSBASE != /usr/tests . Please fix (my employer depends on this being functional). That well happen when I resolve the SYMLINKS .mk glue that should probalby be calling INSTALL_RSYMLINKS and not INSTALL_SYMLINKS. For now this was the minimal diff that corrected the contents of DESTDIR. I did not get a response from either Bdrewery or Bapt on my direct question about the issue that SYMLINKS has no relative mechansim, other than we could add a RSYMLINKS possibly. > Thanks, > -Ngie -- End of PGP section, PGP failed! -- Rod Grimes rgrimes@freebsd.org