diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2019-07-07 13:25:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-08 13:05:56 +0200 |
commit | a55dd25d3ef5c8c6a2ea202fef44665ea2992ad2 (patch) | |
tree | 533d35a810b00eb595dd1c1ffd11e827c786708a /gnu/packages/disk.scm | |
parent | b9a1d74de59887e0e73908f5bcbe27631038b2cf (diff) | |
download | guix-a55dd25d3ef5c8c6a2ea202fef44665ea2992ad2.tar guix-a55dd25d3ef5c8c6a2ea202fef44665ea2992ad2.tar.gz |
gnu: dosfstools: Enable compat symlinks.
Enable compatibility symlinks to provide commands such as `mkfs.vfat`.
* gnu/packages/disk.scm (dosfstools)[arguments]: Pass
"--enable-compat-symlinks" to configure.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/disk.scm')
-rw-r--r-- | gnu/packages/disk.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 06f4430b2d..187ef74b4e 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2019 Leo Famulari <leo@famulari.name> +;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -236,7 +237,8 @@ to recover data more efficiently by only reading the necessary blocks.") "0wy13i3i4x2bw1hf5m4fd0myh61f9bcrs035fdlf6gyc1jksrcp6")))) (build-system gnu-build-system) (arguments - `(#:make-flags (list (string-append "PREFIX=" %output) + `(#:configure-flags (list "--enable-compat-symlinks") + #:make-flags (list (string-append "PREFIX=" %output) "CC=gcc"))) (native-inputs `(("xxd" ,xxd))) ; for tests |