gnu: e2fsprogs: Use symlinks instead of hard links.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: Pass "--enable-symlink-install".
This commit is contained in:
parent
6d3e08d4e8
commit
74d212911e
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <mhw@netris.org>
|
||||||
|
@ -641,6 +641,11 @@ (define-public e2fsprogs
|
||||||
"--disable-libuuid" "--disable-uuidd"
|
"--disable-libuuid" "--disable-uuidd"
|
||||||
"--disable-fsck"
|
"--disable-fsck"
|
||||||
|
|
||||||
|
;; Use symlinks instead of hard links for
|
||||||
|
;; 'fsck.extN' etc. This makes the resulting nar
|
||||||
|
;; smaller and is preserved across copies.
|
||||||
|
"--enable-symlink-install"
|
||||||
|
|
||||||
;; Install libext2fs et al.
|
;; Install libext2fs et al.
|
||||||
"--enable-elf-shlibs")
|
"--enable-elf-shlibs")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue