diff options
author | William Hubbs <williamh@gentoo.org> | 2021-09-27 15:49:21 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2021-09-27 15:56:35 -0500 |
commit | a3e35578740551f78a8fa44b51143865ca16c4a9 (patch) | |
tree | 63cc721b70c82faeb2d2ff74549e410ac85fa509 | |
parent | drop lib directory installation from Makefile (diff) | |
download | baselayout-a3e35578740551f78a8fa44b51143865ca16c4a9.tar.gz baselayout-a3e35578740551f78a8fa44b51143865ca16c4a9.tar.bz2 baselayout-a3e35578740551f78a8fa44b51143865ca16c4a9.zip |
clean up makefile
Signed-off-by: William Hubbs <williamh@gentoo.org>
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -64,10 +64,13 @@ 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)/lib + cp -pPR lib.$(OS)/* $(DESTDIR)/etc/ + $(INSTALL_DIR) $(DESTDIR)/usr/lib + ln -snf ../usr/lib/os-release ${DESTDIR}/etc/os-release + ./make_os_release ${OS} ${PV} > $(DESTDIR)/usr/lib/os-release $(INSTALL_DIR) $(DESTDIR)/usr/share/baselayout cp -pPR share.$(OS)/* $(DESTDIR)/usr/share/baselayout/ - ./make_os_release $(OS) $(PV) > $(DESTDIR)/usr/lib/os-release - ln -snf ../usr/lib/os-release ${DESTDIR}/etc/os-release layout-dirs: # Create base filesytem layout |