diff options
author | ngie <ngie@FreeBSD.org> | 2015-12-01 06:22:27 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-12-01 06:22:27 +0000 |
commit | 28d000c07b751e8822caca34c2943f2f7d85e105 (patch) | |
tree | d9587a8468615efe642404e5d52c9a41d480cf07 /etc | |
parent | 6f4164ad05e4b5452ef318ef29dde97fa0e7f53d (diff) | |
download | FreeBSD-src-28d000c07b751e8822caca34c2943f2f7d85e105.zip FreeBSD-src-28d000c07b751e8822caca34c2943f2f7d85e105.tar.gz |
Revert r290840
This request by the submitter was valid, but unfortunately there is a good deal
of concern over breakage when DESTDIR != / or "", i.e. with release media.
Making this change correct for all cases would make it markedly more complex
than need be
Requested by: bdrewery, ian, imp
PR: 76362
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index ddb7769..cf97988 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -408,7 +408,7 @@ distrib-dirs: ${MTREES:N/*} distrib-cleanup .PHONY ${METALOG.add} ; \ done; true .endif - ${INSTALL_SYMLINK} ${SRCTOP:C/^\///}/sys ${DESTDIR}/sys + ${INSTALL_SYMLINK} usr/src/sys ${DESTDIR}/sys .if ${MK_MAN} != "no" cd ${DESTDIR}${SHAREDIR}/man; \ for mandir in man*; do \ |