From a57fb86d6a28c5292ca2ee50f2b5ec8e49c844ec Mon Sep 17 00:00:00 2001 From: Chen Minqiang Date: Wed, 17 Apr 2019 20:00:49 +0800 Subject: [PATCH] toolchain: glibc ldd env path fixup This replace the shell script header of ldd when it install to `/usr/bin/ldd` where `#! /..../staging_dir/host/bin/bash` should be `#!/bin/sh` Signed-off-by: Chen Minqiang --- package/libs/toolchain/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libs/toolchain/Makefile b/package/libs/toolchain/Makefile index f92a1779da..9851a5f1cd 100644 --- a/package/libs/toolchain/Makefile +++ b/package/libs/toolchain/Makefile @@ -614,6 +614,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) define Package/ldd/install $(INSTALL_DIR) $(1)/usr/bin/ $(CP) $(TOOLCHAIN_DIR)/bin/ldd $(1)/usr/bin/ + sed -i 's,^#!.*,#!/bin/sh,' $(1)/usr/bin/ldd endef define Package/ldconfig/install