- In Arch Linux the file -L command comes up with "static-pie linked" instead of "statically linked" - This patch makes the grep look for either one of those strings.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/make.sh b/make.sh index c0d1f1d2c..e214fdf3e 100755 --- a/make.sh +++ b/make.sh @@ -910,7 +910,7 @@ qemu_find_build_helper_name() { file_is_static() { local file="${1}"
- file -L "${file}" 2>/dev/null | grep -q "statically linked" + file -L "${file}" 2>/dev/null | grep -q -e "statically linked" -e "static-pie linked" }
update_language_list() {