Skip to content
Snippets Groups Projects
Commit ece60f7d authored by Daniel Shahaf's avatar Daniel Shahaf
Browse files

issues += bin_sh_is_bash; tag monkeysign,open-build-service with it

parent 59f10175
No related branches found
No related tags found
No related merge requests found
......@@ -1441,3 +1441,6 @@ graphviz_nondeterminstic_output:
notes optimally. This can appear in class hierarchy documention, etc. Can
presumably affect images of all complexity but, obviously, more likely to
affect images with lots of nodes.
bin_sh_is_bash:
description: |
Various issues that are caused from whether /bin/sh is dash or bash.
......@@ -16883,6 +16883,16 @@ monkeystudio:
2. The octal literal being present might be a separate bug in its own right. (E.g.,
if other strings besides the copyright notice are also processed by the code that generated
the octal escape.)
.
Upon further investigation, found
config.pri:57:QMAKE_TARGET_COPYRIGHT = "\\251 2005 - 2012 Filipe AZEVEDO and $$QMAKE_TARGET_COMPANY"
so I'm thinking this is a bash/sh difference:
% sh -c 'echo \\251' | xxd
0000000: a90a ..
% bash -c 'echo \\251' | xxd
0000000: 5c32 3531 0a \251.
issues:
- bin_sh_is_bash
mono:
version: 4.2.1.102+dfsg2-5
comments: |
......@@ -19021,6 +19031,8 @@ open-build-service:
due to brace expansion in a Makefile (works in bash but not in dash):
.
src/api/Makefile:17: $(INSTALL) -m 0755 -d $(DESTDIR)$(OBS_API_PREFIX)/db/sphinx{,/production}
issues:
- bin_sh_is_bash
open-coarrays:
version: 1.6.2-2
issues:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment