commit: 084c51c67b07562ff0cf0df0774dfaf5978dcffd Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Sat Sep 25 18:28:36 2021 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Sat Sep 25 18:59:42 2021 +0000 URL: https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=084c51c6
move 00protected-links.conf to /usr/lib/sysctl.d Bug: https://bugs.gentoo.org/814664 Signed-off-by: William Hubbs <williamh <AT> gentoo.org> Makefile | 3 ++- {etc.Linux => lib.Linux}/sysctl.d/00protected-links.conf | 0 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d74853e..5bd10b91 100644 --- a/Makefile +++ b/Makefile @@ -64,9 +64,10 @@ install: $(INSTALL_DIR) $(DESTDIR)/etc cp -pPR etc/* etc.$(OS)/* $(DESTDIR)/etc/ echo "Gentoo Base System release ${PV}" > ${DESTDIR}/etc/gentoo-release + $(INSTALL_DIR) $(DESTDIR)/usr/lib + cp -pPR lib.$(OS)/* $(DESTDIR)/usr/lib/ $(INSTALL_DIR) $(DESTDIR)/usr/share/baselayout cp -pPR share.$(OS)/* $(DESTDIR)/usr/share/baselayout/ - $(INSTALL_DIR) $(DESTDIR)/usr/lib ./make_os_release $(OS) $(PV) > $(DESTDIR)/usr/lib/os-release ln -snf ../usr/lib/os-release ${DESTDIR}/etc/os-release diff --git a/etc.Linux/sysctl.d/00protected-links.conf b/lib.Linux/sysctl.d/00protected-links.conf similarity index 100% rename from etc.Linux/sysctl.d/00protected-links.conf rename to lib.Linux/sysctl.d/00protected-links.conf
