summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/graphic/1401
blob: 833e613f2cd3371e28c22312c5b1753314616227 (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
34
35
graphic: 0.931
device: 0.786
debug: 0.573
network: 0.553
semantic: 0.533
PID: 0.509
other: 0.469
vnc: 0.468
socket: 0.410
boot: 0.383
performance: 0.335
KVM: 0.301
files: 0.300
permissions: 0.112

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)