summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1886343
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:24:58 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:27:06 +0000
commit33606b41d35115f887ea688b1a16f2ff85bf2fe4 (patch)
tree406b2c7b19a087ba437c68f3dbf0b589fa1d6150 /results/scraper/launchpad-without-comments/1886343
parentadedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff)
downloadqemu-analysis-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz
qemu-analysis-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/1886343')
-rw-r--r--results/scraper/launchpad-without-comments/188634314
1 files changed, 14 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1886343 b/results/scraper/launchpad-without-comments/1886343
new file mode 100644
index 000000000..d32ce6453
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1886343
@@ -0,0 +1,14 @@
+configure has non-posix bash syntax
+
+which gives an error when run on a system that uses dash for /bin/sh.
+
+The problem is at line 6464 which has
+    if test "$have_keyring" == "yes"
+the double equal sign is non-posix bash syntax that isn't accepted by posix shells like dash.  This was added 2020-05-25 according to git blame so looks like a recent problem.
+
+On an Ubuntu 20.04 system with top of tree sources I get
+gondor:2027$ ../qemu/configure --prefix=/home/wilson/FOSS/qemu/install-qemu-tmp --target-list=riscv64-linux-user,riscv64-softmmu,riscv32-linux-user,riscv32-softmmu
+../qemu/configure: 6464: test: yes: unexpected operator
+...
+
+configure completes OK, so this is a minor problem.  It is just one configure test that is failing to work properly.
\ No newline at end of file