diff options
author | Marius Bakke <marius@gnu.org> | 2021-06-19 16:33:37 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-06-19 17:08:38 +0200 |
commit | 4a8e3ca8ec110a40218946e265c9876dcc445d6e (patch) | |
tree | bf0aaded902953883b18c8c1bf8e90d9a253200a /gnu/packages | |
parent | 02bf9bab8b575f3c90a7631140619fec9114853e (diff) | |
download | guix-4a8e3ca8ec110a40218946e265c9876dcc445d6e.tar guix-4a8e3ca8ec110a40218946e265c9876dcc445d6e.tar.gz |
gnu: ntfs-3g: Do not run ldconfig during install.
This previously did nothing, and became redundant with
f85efa86e7690d9181946351631e02b1c20958c9.
* gnu/packages/linux.scm (ntfs-3g)[arguments]: Add "--disable-ldconfig" to
#:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/linux.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 5cdfe97764..98060a7696 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5703,6 +5703,7 @@ invocations of itself.") (native-inputs `(("pkg-config" ,pkg-config))) (arguments '(#:configure-flags (list "--disable-static" + "--disable-ldconfig" ;not necessary "--exec-prefix=${prefix}" "--with-fuse=external" ;use our own FUSE "--enable-mount-helper" |