diff options
Diffstat (limited to 'perl-install/c/stuff.pm')
-rw-r--r-- | perl-install/c/stuff.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/c/stuff.pm b/perl-install/c/stuff.pm index 0121f2904..b6cbd6128 100644 --- a/perl-install/c/stuff.pm +++ b/perl-install/c/stuff.pm @@ -19,6 +19,7 @@ sub headerGetEntry { $q eq 'group' and return from_utf8(headerGetEntry_string($h, RPMTAG_GROUP())); $q eq 'version' and return headerGetEntry_string($h, RPMTAG_VERSION()); $q eq 'release' and return headerGetEntry_string($h, RPMTAG_RELEASE()); + $q eq 'epoch' and return headerGetEntry_int($h, RPMTAG_EPOCH()); $q eq 'summary' and return from_utf8(headerGetEntry_string($h, RPMTAG_SUMMARY())); $q eq 'description' and return from_utf8(headerGetEntry_string($h, RPMTAG_DESCRIPTION())); $q eq 'arch' and return headerGetEntry_string($h, RPMTAG_ARCH()); |