diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-20 09:46:45 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:39 -0500 |
commit | 0bf465c64d60d7179329b3a60cf7a1244646a0eb (patch) | |
tree | 4c9b76e281e61423c29834452fe28a5a9b684f34 /gnu | |
parent | 7407f0c4965e97ad5896f86033871cccfa1b04a4 (diff) |
gnu: gjs: Build with meson-0.59 to avoid 'install_dir' error.
* gnu/packages/gnome.scm (gjs)[meson]: Use meson-0.59.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 029f4f4536..8d045fa5bc 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7234,7 +7234,10 @@ configuration program to choose applications starting on login.") (("☭") "")))))) (build-system meson-build-system) (arguments - '(#:configure-flags '("-Dinstalled_tests=false") + ;; Use meson-0.59, otherwise we'd get "ERROR: "install_dir" must be + ;; specified when installing a target". + `(#:meson ,meson-0.59 + #:configure-flags '("-Dinstalled_tests=false") #:phases (modify-phases %standard-phases (add-before 'check 'pre-check |