summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/graphic/1401
blob: bcb8524c9ac522d0d6cc304dca45a1952da10fee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
graphic: 0.931
instruction: 0.787
device: 0.786
mistranslation: 0.726
network: 0.553
semantic: 0.533
other: 0.469
vnc: 0.468
socket: 0.410
boot: 0.383
KVM: 0.301
assembly: 0.135

configure uses break outside loop
Description of problem:
When running `configure` in version 7.2.0, the following message is printed multiple times:

```
qemu/configure: line 1885: break: only meaningful in a `for', `while', or `until' loop
```
Steps to reproduce:
Running `configure` should be enough. My complete configure command is:

```
/bin/bash ./configure \
    --prefix=$PREFIX/qemu --sysconfdir=/etc$PREFIX/qemu \
    --includedir=$PREFIX/qemu/include --bindir=$PREFIX/qemu/bin \
    --sbindir=$PREFIX/qemu/sbin --libdir=$PREFIX/qemu/lib/amd64 \
    --libexecdir=$PREFIX/qemu/libexec/amd64 \
    --localstatedir=/var$PREFIX/qemu
```
Additional information:
The `configure` script has `break;` in a conditional, where `:` would suffice (or the conditional could just be negated)