|
Bugzilla – Full Text Bug Listing |
| Summary: | [Build 20230917] groff / "man -P cat docker build | grep … => troff:<standard input>:80: warning: cannot select font 'C' | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE Tumbleweed | Reporter: | Dominique Leuenberger <dimstar> |
| Component: | Basesystem | Assignee: | Aleksa Sarai <asarai> |
| Status: | NEW --- | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | felix.niederwanger, guillaume.gardet, pdostal |
| Version: | Current | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| URL: | https://openqa.opensuse.org/tests/3584565/modules/docker/steps/212 | ||
| Whiteboard: | |||
| Found By: | openQA | Services Priority: | |
| Business Priority: | Blocker: | Yes | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Dominique Leuenberger
2023-09-19 06:28:33 UTC
Looks like a issue with man itself to me: $ man -P cat docker-build > 123 troff:<standard input>:80: warning: cannot select font 'C' ... $ man docker-build > 123 troff:<standard input>:80: warning: cannot select font 'C' ... I think the underlying issue is that the man output consists of non-ascii characters now. When comparing the output of man podman-build between Tumbleweed and SLES 15-SP4 it becomes apparent that e.g. the dash character on Tumbleweed is not the '-' dash character: > phoenix@tumbleweed:~ $ man podman-build > NAME > podman‐build ‐ Build a container image using a Containerfile > > phoenix@sles15sp5:~ $ man podman-build > NAME > podman-build - Build a container image using a Containerfile Visually they are not really different, but when copying to a text editor or looking at the encoding it becomes clear that on Tumbleweed the output is different. This causes also openQA to stumble, e.g. here: https://openqa.opensuse.org/tests/3628637#step/docker/221 Can perhaps the man maintainer have a look if there were some recent changes that would explain this behaviour? |