summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/636315
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/636315
parentadedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff)
downloademulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz
emulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/636315')
-rw-r--r--results/scraper/launchpad-without-comments/63631537
1 files changed, 37 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/636315 b/results/scraper/launchpad-without-comments/636315
new file mode 100644
index 00000000..6f396e7c
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/636315
@@ -0,0 +1,37 @@
+configure and build errors on Solaris 10 due to /bin/sh usage
+
+Running `LANG=C LC_ALL=C ./configure --prefix=... --install=/usr/ucb/install` on Solaris 10 amd64 results in the following errors:
+
+./configure: bad substitution
+./configure: !: not found
+./configure: curl-config: not found
+./configure: curl-config: not found
+
+Error: invalid trace backend
+Please choose a supported trace backend.
+
+
+Unfortunately it doesn't print the line numbers of the errors. It must be somewhere after the check for `install`.
+
+The first few can be resolved by running `bash ./configure ...` instead. 
+
+The "check if trace backend exists" hardcodes `sh "$source_path/tracetool" ...` in configure. Replacing sh with bash makes it work.
+
+`gmake` complains "Makefile:331: no file name for -include", which is a filter for *.d files.
+`create_config` gets the 'bad substitution' error as well. Replacing sh with bash in rules.mak works.
+etc.
+
+To sum it up,
+a) there are shell script incompatibilities with Solaris 10's /bin/sh shell, and
+b) hardcoding 'sh' in configure or Makefiles seems like a bad idea.
+
+QEMU Git 73d7434279e3905164afd02360eebe4b43c7fa (ESP: fix ESP DMA access...)
+
+$ uname -a
+SunOS sonnengoettin 5.10 Generic_142901-03 i86pc i386 i86pc
+
+# No banner output for /bin/sh
+
+$ bash --version
+GNU bash, version 3.00.16(1)-release (i386-pc-solaris2.10)
+Copyright (C) 2004 Free Software Foundation, Inc.
\ No newline at end of file