gnu: gimp: Report bugs to Guix.
Upstream prints this when running ./configure. Take the hint. NOTE: if you plan on packaging GIMP for distribution, it is recommended to override the bug report URL with option: --with-bug-report-url=https://example.com/ so that you can filter packaging bugs from core bugs before reporting upstream. * gnu/packages/gimp.scm (gimp)[arguments]: Customise bug report URI.
This commit is contained in:
parent
0f83d6029e
commit
cb4baa4da6
|
@ -130,9 +130,12 @@ buffers.")
|
|||
(outputs '("out"
|
||||
"doc")) ; 9 MiB of gtk-doc HTML
|
||||
(arguments
|
||||
'(#:configure-flags (list (string-append "--with-html-dir="
|
||||
(assoc-ref %outputs "doc")
|
||||
"/share/gtk-doc/html"))
|
||||
'(#:configure-flags
|
||||
(list (string-append "--with-html-dir="
|
||||
(assoc-ref %outputs "doc")
|
||||
"/share/gtk-doc/html")
|
||||
;; ./configure requests not to annoy upstream with packaging bugs.
|
||||
"--with-bug-report-url=https://bugs.gnu.org/guix")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-sitecustomize.py
|
||||
|
|
Loading…
Reference in New Issue