Package Bonniepp adding sbin to PATH (#16124)

This commit is contained in:
Amjad Kotobi 2020-04-20 23:19:55 +02:00 committed by GitHub
parent 8635c0d804
commit a70e76d043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,3 +19,7 @@ def configure_args(self):
configure_args = []
configure_args.append('--enable-debug')
return configure_args
def setup_run_environment(self, env):
"""Prepend the sbin directory to PATH."""
env.prepend_path('PATH', self.prefix.sbin)