From: Christian Stewart Date: Wed, 23 Dec 2020 03:35:01 +0000 (+0800) Subject: package/tini: install docker-init symlink X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=072af885c4afedf4f131563a755c532f8ad45650;p=buildroot.git package/tini: install docker-init symlink This removes the warning that docker can't find docker-init in PATH. Signed-off-by: Christian Stewart Signed-off-by: Tian Yuanhao Signed-off-by: Thomas Petazzoni --- diff --git a/package/tini/tini.mk b/package/tini/tini.mk index 157477f8df..af4a3bcb5e 100644 --- a/package/tini/tini.mk +++ b/package/tini/tini.mk @@ -30,6 +30,7 @@ endef define TINI_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/bin/tini $(TARGET_DIR)/usr/bin/tini + ln -sf tini $(TARGET_DIR)/usr/bin/docker-init endef # Tini's CMakeLists.txt is not suitable for Buildroot.