diff options
author | Jack Hill <jackhill@jackhill.us> | 2020-03-31 18:28:24 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-03-31 18:39:56 -0400 |
commit | a7cc13ed83a356ec50b7dbffdaa91f45ee9d095e (patch) | |
tree | ba8074e600c9dfe80869d62371d00f5fa1869420 /gnu/packages/gimp.scm | |
parent | e62f6f77fe1c1823e8f927d582554eda436234c1 (diff) | |
download | patches-a7cc13ed83a356ec50b7dbffdaa91f45ee9d095e.tar patches-a7cc13ed83a356ec50b7dbffdaa91f45ee9d095e.tar.gz |
gnu: gimp: Disable automatic update checking
* gnu/packages/gimp.scm (gimp)[arguments]: Disable update checking
in #:configure-flags.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/gimp.scm')
-rw-r--r-- | gnu/packages/gimp.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index fcf613423c..3537fa12f5 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -151,6 +151,9 @@ buffers.") (list (string-append "--with-html-dir=" (assoc-ref %outputs "doc") "/share/gtk-doc/html") + ;; Disable automatic network request on startup to check for + ;; version updates. + "--disable-check-update" ;; ./configure requests not to annoy upstream with packaging bugs. "--with-bug-report-url=https://bugs.gnu.org/guix") #:phases |