diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-09 09:38:22 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-09 12:55:46 -0400 |
commit | 2bde53c594aadca3df85d1011a41d8dfc183bb4b (patch) | |
tree | b0cb8389e753e53bf7dbded22e8968791e542e4c | |
parent | 311255adc0d1c3b3aa0f6bed5af58e718f0607b2 (diff) | |
download | guix-2bde53c594aadca3df85d1011a41d8dfc183bb4b.tar.gz guix-2bde53c594aadca3df85d1011a41d8dfc183bb4b.zip |
gnu: gtk: Do not manually move /bin.
The Meson build system now takes care of that itself, just like the GNU build
system.
* gnu/packages/gtk.scm (gtk) [arguments]: Remove /bin from the list of moved
directory in the move-files phase.
-rw-r--r-- | gnu/packages/gtk.scm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index ecb86eebea..378e1d1e3d 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1198,7 +1198,6 @@ application suites.") (lambda _ (for-each mkdir-p (list - (string-append #$output:bin "/bin") (string-append #$output:bin "/share/applications") (string-append #$output:bin "/share/icons") (string-append #$output:bin "/share/man") @@ -1210,7 +1209,6 @@ application suites.") (string-append #$output dir) (string-append #$output:bin dir))) (list - "/bin" "/share/applications" "/share/icons" "/share/man" |