Not going to do major refactoring for this in 4.20, drop the milestone.
--
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/issues/2714#issuecomment-2008969429
You are receiving this because you are subscribed to this thread.
Message ID: _
The problem is of course far wider than just this one error message. To solve
this, we need to refactor all spec-error reporting to a variable argument
helper function which can then report filename, line number and such
consistently though rpmlog().
--
Reply to this email directly or view it
includetest.spec:
```
Name: includetest
Version: 1.0
Release: 1
License: Testing
%include badsummary.inc
%description
%{summary}
```
badsummary.inc:
```
Xummary: Include test
```
> [pmatilai🎩︎localhost SPECS]$ rpmbuild -bb badsummary.inc
> error: line 1: Unknown tag: Xummary: Include test
That