From df17d508052d955bc9800a871f403cd3f2b07fce Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 28 Mar 2018 02:17:37 -0400 Subject: [PATCH] gnu: guile-rsvg: Restore custom bootstrap phase. This fixes a regression introduced in commit 189be331acfda1c242a9c85fca8d2a0356742f48. * gnu/packages/gtk.scm (guile-rsvg)[arguments]: Restore the custom bootstrap phase that was in place prior to commit 189be33, but use invoke. --- gnu/packages/gtk.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 37402cedcd..b55af15900 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -856,6 +856,11 @@ exceptions, macros, and a dynamic programming environment.") #t)) (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "autoreconf" "-vfi")))))) (native-inputs `(("pkg-config" ,pkg-config) ("autoconf" ,autoconf) ("automake" ,automake)