diff options
author | Andreas Schneider <asn@samba.org> | 2019-04-25 10:14:44 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-04-25 10:47:16 +0000 |
commit | 8b2fbd7983e4c7c8cb946851231eab641fedd463 (patch) | |
tree | e8c55d475c32d13f335c5496fa9d0ace84582f98 /bootstrap/config.py | |
parent | a6aff7333b95cc450918c69a2a563d473acf043c (diff) | |
download | samba-8b2fbd7983e4c7c8cb946851231eab641fedd463.tar.gz |
bootstrap: Add missing packages on RPM distributions
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'bootstrap/config.py')
-rw-r--r-- | bootstrap/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bootstrap/config.py b/bootstrap/config.py index 6f2b2bfd832..a98120c3849 100644 --- a/bootstrap/config.py +++ b/bootstrap/config.py @@ -122,6 +122,7 @@ PKGS = [ # refer: https://fedoraproject.org/wiki/Changes/SunRPCRemoval ('', 'libtirpc-devel'), # for <rpc/rpc.h> header on fedora ('', 'libnsl2-devel'), # for <rpcsvc/yp_prot.h> header on fedora + ('', 'rpcsvc-proto-devel'), # for <rpcsvc/rquota.h> header ('mawk', 'gawk'), # python @@ -423,6 +424,7 @@ RPM_DISTS = { # update perl core modules on centos # fix: Can't locate Archive/Tar.pm in @INC 'perl': 'perl-core', + 'rpcsvc-proto-devel': '', } }, 'centos7': { @@ -443,6 +445,7 @@ RPM_DISTS = { # update perl core modules on centos # fix: Can't locate Archive/Tar.pm in @INC 'perl': 'perl-core', + 'rpcsvc-proto-devel': '', } }, 'fedora28': { |