Ricardo Wurmus writes: > Christopher Baines writes: > >> * gnu/packages/gnome.scm (system-config-printer): New variable. > […] >> + (arguments >> + `(#:imported-modules ((guix build python-build-system) >> + ,@%glib-or-gtk-build-system-modules) >> + #:phases >> + (modify-phases %standard-phases >> + (add-after 'unpack 'patch-Makefile.am >> + (lambda _ >> + ;; The Makefile generates some scripts, so set a valid shebang >> + (substitute* "Makefile.am" >> + (("/bin/bash") (which "bash"))) >> + #t)) > […] >> + (add-before 'configure 'bootstrap >> + (lambda _ >> + ;; Run ./bootstrap as otherwise the build fails with >> + ;; automake-1.15: command not found >> + (invoke "./bootstrap") >> + #t)) > > The build system already provides a “bootstrap” phase, so maybe it would > be better to delete “configure” in “patch-Makefile.am” to activate the > bootstrap phase. > > Otherwise looks good to me. Thanks! Great, I've made that change to the system-config-printer phases and pushed these patches now. Thanks, Chris