From: Chris Lesiak Date: Tue, 23 Jan 2018 23:13:50 +0000 (-0600) Subject: Makefile: Store OS release in /usr/lib/os-release X-Git-Tag: 2018.02-rc1~126 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/coffee/buildroot.git/commitdiff_plain/5f2dc44590b824a72730f257a00a20216e40d552 Makefile: Store OS release in /usr/lib/os-release It is recommended that vendor trees store OS release information in /usr/lib/os-release and that /etc/os-release should be a relative symlink to /usr/lib/os-release. For more details, see: http://0pointer.de/public/systemd-man/os-release.html [Peter: don't hide command, simplify ln invocation] Signed-off-by: Chris Lesiak Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index 7d8ab51a8c..1825d0af81 100644 --- a/Makefile +++ b/Makefile @@ -729,7 +729,8 @@ endif echo "ID=buildroot"; \ echo "VERSION_ID=$(BR2_VERSION)"; \ echo "PRETTY_NAME=\"Buildroot $(BR2_VERSION)\"" \ - ) > $(TARGET_DIR)/etc/os-release + ) > $(TARGET_DIR)/usr/lib/os-release + ln -sf ../usr/lib/os-release $(TARGET_DIR)/etc @$(call MESSAGE,"Sanitizing RPATH in target tree") $(TOPDIR)/support/scripts/fix-rpath target