diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-11-02 22:35:15 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-11-02 22:43:52 +0200 |
commit | db9107b90a1a152dc17a1414dcf1ca2761887a2f (patch) | |
tree | 3b2f1fd5812c0107c9e9ae592f9e9f1174a102a2 | |
parent | edfecb938563462462c806e31608f4bd01bbf867 (diff) | |
download | guix-db9107b90a1a152dc17a1414dcf1ca2761887a2f.tar.gz guix-db9107b90a1a152dc17a1414dcf1ca2761887a2f.zip |
gnu: util-linux: Fix 'install phase.
* gnu/packages/linux.scm (util-linux)[arguments]: Add configure-flag to
avoid calling 'chown' during the 'install phase.
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9c7bc67fcb..2bd81901d7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -527,6 +527,8 @@ providing the system administrator with some help in common tasks.") (arguments `(#:configure-flags (list "--disable-use-tty-group" "--enable-fs-paths-default=/run/current-system/profile/sbin" + ;; Don't try to chown root:root mount and umount + "--disable-makeinstall-chown" ;; Install completions where our ;; bash-completion package expects them. (string-append "--with-bashcompletiondir=" |