From 7c88cce6547af9511122f1fd2f7e98568660cdd2 Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Wed, 18 Sep 2024 10:36:17 +0200 Subject: [PATCH] Explicitly use bash for the ld testsuite. Gbp-Pq: Name 013_bash_in_ld_testsuite.patch --- ld/testsuite/config/default.exp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ld/testsuite/config/default.exp b/ld/testsuite/config/default.exp index 8374920c7..31136101e 100644 --- a/ld/testsuite/config/default.exp +++ b/ld/testsuite/config/default.exp @@ -200,7 +200,7 @@ load_lib ld-lib.exp proc get_target_emul {} { global target_triplet global srcdir - set status [catch "exec sh -c \"targ='$target_triplet' && . $srcdir/../configure.tgt && echo \\\$targ_emul\"" result] + set status [catch "exec bash -c \"targ='$target_triplet' && . $srcdir/../configure.tgt && echo \\\$targ_emul\"" result] if $status { error "Error getting emulation name: $result" } return $result } -- 2.30.2