e2fsprogs: fix non-root install (#28255)
This commit is contained in:
parent
c8e01752a1
commit
2cf22ad5f2
@ -20,3 +20,9 @@ class E2fsprogs(AutotoolsPackage):
|
|||||||
|
|
||||||
def setup_run_environment(self, env):
|
def setup_run_environment(self, env):
|
||||||
env.prepend_path('PATH', self.prefix.sbin)
|
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']
|
||||||
|
Loading…
Reference in New Issue
Block a user