From: Jo-Philipp Wich Date: Thu, 10 Sep 2020 12:54:49 +0000 (+0200) Subject: rules.mk: simplify FAKEROOT command line X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Frmilecki.git;a=commitdiff_plain;h=0fdbd2e61f742d9fbd6263bd86da3013ebcb1b9c rules.mk: simplify FAKEROOT command line Since fakeroot is patched to discover related ressources relative to the STAGING_DIR_HOST environment variable, there is no need to pass the path to faked or the preload library manually anymore. Signed-off-by: Jo-Philipp Wich --- diff --git a/rules.mk b/rules.mk index 8b2424f2bad..3214395e1f6 100644 --- a/rules.mk +++ b/rules.mk @@ -264,12 +264,7 @@ endif BUILD_KEY=$(TOPDIR)/key-build -ifeq ($(HOST_OS),Darwin) - FAKEROOT_SO:=$(STAGING_DIR_HOST)/lib/libfakeroot.dylib -else - FAKEROOT_SO:=$(STAGING_DIR_HOST)/lib/libfakeroot.so -endif -FAKEROOT:=$(STAGING_DIR_HOST)/bin/fakeroot -l $(FAKEROOT_SO) -f $(STAGING_DIR_HOST)/bin/faked +FAKEROOT:=$(STAGING_DIR_HOST)/bin/fakeroot TARGET_CC:=$(TARGET_CROSS)gcc TARGET_CXX:=$(TARGET_CROSS)g++