From: Jo-Philipp Wich Date: Tue, 8 Sep 2020 11:52:10 +0000 (+0200) Subject: tools: fakeroot: use TCP as IPC transport X-Git-Tag: v21.02.0-rc1~1619 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6485f521c9bb4a898cad6d73d7b27196921b89bb;p=openwrt%2Fopenwrt.git tools: fakeroot: use TCP as IPC transport Some environments, e.g. first gen WSL, do not support SysV IPC. Enforce the use of TCP transport instead which should be universally available. Fixes: FS#3317 Ref: https://github.com/microsoft/WSL/issues/4067 Signed-off-by: Jo-Philipp Wich --- diff --git a/tools/fakeroot/Makefile b/tools/fakeroot/Makefile index 5bb8ab342c..9ab2679626 100644 --- a/tools/fakeroot/Makefile +++ b/tools/fakeroot/Makefile @@ -19,4 +19,7 @@ HOST_CONFIGURE_VARS += \ ac_cv_header_sys_capability_h=no \ ac_cv_func_capset=no +HOST_CONFIGURE_ARGS += \ + --with-ipc=tcp + $(eval $(call HostBuild))