Bug 2177251
| Summary: | shouldn't use obsolescent egrep | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | nvwarr | ||||
| Component: | doxygen | Assignee: | Than Ngo <than> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | low | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 38 | CC: | than | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | doxygen-1.9.6-7.fc38 | Doc Type: | If docs needed, set a value | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2023-03-15 00:17:34 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
it fixed in doxygen-1.9.6-7.fc38. Thanks for your report! FEDORA-2023-f2921747af has been submitted as an update to Fedora 38. https://bodhi.fedoraproject.org/updates/FEDORA-2023-f2921747af FEDORA-2023-f2921747af has been pushed to the Fedora 38 testing repository. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2023-f2921747af See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates. FEDORA-2023-f2921747af has been pushed to the Fedora 38 stable repository. If problem still persists, please make note of it in this bug report. |
Created attachment 1949616 [details] patch to fix it Description of problem: doxygen uses egrep rather than grep -E Version-Release number of selected component (if applicable): doxygen-1.9.6-5.fc38.x86_64 How reproducible: always Steps to Reproduce: 1. run doxygen on a Doxyfile 2. the Makefile it generates refers to egrep Actual results: running the Makefile emits a warning that egrep is obsolescent Expected results: the Makefile should use grep -E instead Additional info: egrep needs to be replaced by grep -E in templates/latex/latexmakefile.tpl and src/latexgen.cpp (two places in each file)