From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 37/50] make.sh: Follow symlinks when checking if QEMU is static Date: Tue, 22 Feb 2022 12:51:22 +0000 Message-ID: <20220222125135.1211290-38-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5869556153202173919==" List-Id: --===============5869556153202173919== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 86e36d41d..ed8cd260e 100755 --- a/make.sh +++ b/make.sh @@ -912,7 +912,7 @@ qemu_find_build_helper_name() { file_is_static() { local file="${1}" - file ${file} 2>/dev/null | grep -q "statically linked" + file -L "${file}" 2>/dev/null | grep -q "statically linked" } update_language_list() { -- 2.30.2 --===============5869556153202173919==--