diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | URPM.xs | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- fix parsing a spec file with rpm-4.9 + (regression introduced when adding support for rpm-4.9) - enable to traverse db by fullname - fix slow matching of individual regexes for skipping dependencies by creating a large regex to match them all at once (mdv#61389, Shlomi Fish) @@ -3843,7 +3843,7 @@ Urpm_spec2srcheader(specfile) /* Do not verify whether sources exist */ #define SPEC_FORCE 1 #ifdef RPM490 - spec = rpmSpecParse(specfile, SPEC_ANYARCH|SPEC_FORCE, NULL); + spec = rpmSpecParse(specfile, RPMSPEC_ANYARCH|RPMSPEC_FORCE, NULL); if (spec) { header = rpmSpecSourceHeader(spec); #else |