[openwrt/openwrt] build: fix ldconfig executable error in python

LEDE Commits lede-commits at lists.infradead.org
Tue Nov 2 10:26:10 PDT 2021


zorun pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6a5b4228e30244b44a49f523dea66caf3fbe3307

commit 6a5b4228e30244b44a49f523dea66caf3fbe3307
Author: Damien Mascord <tusker at tusker.org>
AuthorDate: Mon Nov 1 20:06:20 2021 +1100

    build: fix ldconfig executable error in python
    
    The empty executable is causing problems with meson builds, due to the
    error: OSError: [Errno 8] Exec format error: 'ldconfig'
    
    This patch changes the empty ldconfig stub to symlink to /bin/true to
    work around this issue.
    
    Fixes: FS#4117
    Fixes: 3bd31cc4d2ff ("tools/meson: update to 0.60.0")
    
    Signed-off-by: Damien Mascord <tusker at tusker.org>
    Tested-by: Aleksander Jan Bajkowski <olek2 at wp.pl> # Tested on Debian 11
    Tested-By: Lucian Cristian <lucian.cristian at gmail.com>
    Tested-By: Baptiste Jonglez <git at bitsofnetworks.org>
    Cc: Rosen Penev <rosenp at gmail.com>
---
 include/prereq-build.mk | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/prereq-build.mk b/include/prereq-build.mk
index ce6873cf52..e1918f0027 100644
--- a/include/prereq-build.mk
+++ b/include/prereq-build.mk
@@ -198,5 +198,4 @@ prereq: $(STAGING_DIR_HOST)/bin/mkhash
 
 # Install ldconfig stub
 $(eval $(call TestHostCommand,ldconfig-stub,Failed to install stub, \
-	touch $(STAGING_DIR_HOST)/bin/ldconfig && \
-	chmod +x $(STAGING_DIR_HOST)/bin/ldconfig))
+	$(LN) /bin/true $(STAGING_DIR_HOST)/bin/ldconfig))



More information about the lede-commits mailing list