acct: skip installcheck: fails checking if all progs have --help (#26093)

Checks if all programs support --help and --version but not all do.
This commit is contained in:
bernhardkaindl 2021-09-26 10:26:21 +02:00 committed by GitHub
parent 919a893c08
commit fee0831b63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,3 +18,7 @@ class Acct(AutotoolsPackage):
def setup_run_environment(self, env):
env.prepend_path('PATH', self.prefix.sbin)
def installcheck(self):
""""Runs standard check if all programs support --help but not all do"""
pass