Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Dec 2012 12:39:26 +0000 (UTC)
From:      Pawel Jakub Dawidek <pjd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r243861 - head/libexec/rtld-elf
Message-ID:  <201212041239.qB4CdQJp083956@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pjd
Date: Tue Dec  4 12:39:26 2012
New Revision: 243861
URL: http://svnweb.freebsd.org/changeset/base/243861

Log:
  Change /usr/libexec/ld-elf.so.1 to point at ../../libexec/ld-elf.so.1
  instead of /libexec/ld-elf.so.1. Below in the Makefile we execute
  'chflags noschg ${DESTDIR}/usr/libexec/ld-elf.so.1', which follows
  symlink and removes 'schg' flag from system's /libexec/ld-elf.so.1
  instead of the one in DESTDIR. It is also more friendly to use
  replative paths in symlink in case of jail/chroot environments.
  
  Obtained from:	WHEEL Systems
  MFC after:	2 weeks

Modified:
  head/libexec/rtld-elf/Makefile

Modified: head/libexec/rtld-elf/Makefile
==============================================================================
--- head/libexec/rtld-elf/Makefile	Tue Dec  4 11:10:01 2012	(r243860)
+++ head/libexec/rtld-elf/Makefile	Tue Dec  4 12:39:26 2012	(r243861)
@@ -27,7 +27,7 @@ LDFLAGS+=	-nostdlib -e .rtld_start
 WARNS?=		2
 INSTALLFLAGS=	-C -b
 PRECIOUSPROG=
-BINDIR=		/libexec
+BINDIR=		../../libexec
 SYMLINKS=	${BINDIR}/${PROG} /usr/libexec/${PROG}
 MLINKS=		rtld.1 ld-elf.so.1.1 \
 		rtld.1 ld.so.1



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