diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-09 10:50:50 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-29 16:19:44 +0300 |
commit | 0e21173e16ab9679516f4e3233d73805977fcc1c (patch) | |
tree | 28fd5a8a6bdfab0355f7d0b46499cf0330415c8f | |
parent | bf2370a52576bd77cf944229a8003d4dfb2c99bf (diff) | |
download | guix-0e21173e16ab9679516f4e3233d73805977fcc1c.tar guix-0e21173e16ab9679516f4e3233d73805977fcc1c.tar.gz |
gnu: libsixel: Fix bash completion directory.
* gnu/packages/image.scm (libsixel)[arguments]: Adjust the
configure-flags to install the bash completion script into the standard
directory.
Change-Id: I12a52f8565474ec63e2bd1fa15e5412555a81c31
-rw-r--r-- | gnu/packages/image.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index f8fb162ae7..7f17c71aef 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2015 Amirouche Boubekki <amirouche@hypermove.net> ;;; Copyright © 2014, 2017 John Darrington <jmd@gnu.org> ;;; Copyright © 2016, 2017, 2018, 2020 Leo Famulari <leo@famulari.name> -;;; Copyright © 2016-2023 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016–2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016, 2017, 2020, 2021, 2022 Arun Isaac <arunisaac@systemreboot.net> @@ -2830,7 +2830,8 @@ Graphics (PNGs), intended as an easy-to-use replacement for @code{libpng}.") #:configure-flags #~(list "--buildtype=plain" "-Dtests=enabled" "-Dlibcurl=disabled" - "-Dgdk-pixbuf2=enabled"))) + "-Dgdk-pixbuf2=enabled" + "-Dbashcompletiondir=etc/bash_completion.d"))) (native-inputs (list pkg-config)) (inputs (list libjpeg-turbo libpng python)) ;; pkg-config's "Requires.private" need gdk-pixbuf. TODO: Remove it when |