Skip to content

Commit

Permalink
Parse dynamic spec parts for rpmbuild -bl
Browse files Browse the repository at this point in the history
As we need to check all file lists we need to have them parsed - even if
%build and %install have not been run due to --short-circuit
  • Loading branch information
ffesti committed Apr 16, 2024
1 parent a385821 commit 863f3b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/build.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,8 @@ static int buildSpec(rpmts ts, BTA_t buildArgs, rpmSpec spec, int what)
test, sbp)))
goto exit;

if (((what & RPMBUILD_INSTALL) || (what & RPMBUILD_PACKAGEBINARY)) &&
if (((what & RPMBUILD_INSTALL) || (what & RPMBUILD_PACKAGEBINARY) ||
(what & RPMBUILD_FILECHECK)) &&
(rc = parseGeneratedSpecs(spec)))
goto exit;

Expand Down

0 comments on commit 863f3b4

Please sign in to comment.