diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-12-17 09:51:45 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-17 09:51:48 +0200 |
commit | 4b3e91de2dbcd61575d888b97896cb5a64724410 (patch) | |
tree | 917acc43dca04a997cd0b6a4549c77c15e328925 /gnu/packages/gnome.scm | |
parent | a315afa35b9772f995d0b5f87b7ca9d4726cb1af (diff) | |
download | guix-4b3e91de2dbcd61575d888b97896cb5a64724410.tar guix-4b3e91de2dbcd61575d888b97896cb5a64724410.tar.gz |
gnu: dia: Don't override bootstrap phase.
* gnu/packages/gnome.scm (dia)[arguments]: Remove custom 'run-autogen
phgase. Add phase before 'bootstrap to not run configure.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index a54c23d1be..9bc37f7a81 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -358,9 +358,10 @@ either on a local, or remote machine via a number of methods.") (arguments `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'run-autogen + (add-before 'bootstrap 'dont-configure-during-bootstrap (lambda _ - (system* "sh" "autogen.sh")))))) + (setenv "NOCONFIGURE" "true") + #t))))) (home-page "https://wiki.gnome.org/Apps/Dia") (synopsis "Diagram creation for GNOME") (description "Dia can be used to draw different types of diagrams, and |