e2fsprogs: fix non-root install (#28255)

This commit is contained in:
Dylan Simon 2022-01-12 08:52:46 -05:00 committed by GitHub
parent c8e01752a1
commit 2cf22ad5f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,3 +20,9 @@ class E2fsprogs(AutotoolsPackage):
def setup_run_environment(self, env):
env.prepend_path('PATH', self.prefix.sbin)
def configure_args(self):
# avoid installing things in /etc
return ['--without-udev-rules-dir',
'--without-crond-dir',
'--without-systemd-unit-dir']