diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-11-29 13:40:22 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-11-29 13:41:39 +0100 |
commit | 44aceccf5b3c826f84d659bba10a835b943c1cb0 (patch) | |
tree | 14ecd76b0e208bd9c7abe792f737ecba566345ee /bin | |
parent | aaba725b466950f47c4e93d790986d209e80ead3 (diff) |
fix check-elf-dynamic-objects -p
It needs to wait for all background tasks to exit.
Change-Id: I8770f3d79d66ab2fae727ae7cbbc00e3b22e5e54
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/check-elf-dynamic-objects | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/check-elf-dynamic-objects b/bin/check-elf-dynamic-objects index 298f81e9b294..2a676fbf27e9 100755 --- a/bin/check-elf-dynamic-objects +++ b/bin/check-elf-dynamic-objects @@ -188,6 +188,8 @@ else )>> check_elf.out & done + for file in ${files}; do wait; done + if [ -s check_elf.out ] ; then cat check_elf.out status=1 |