Skip to content
Snippets Groups Projects
Unverified Commit 344e0f56 authored by Leo Famulari's avatar Leo Famulari
Browse files

gnu: netpbm: Fix a hard-coded path.

Fixes <https://bugs.gnu.org/24735>.

* gnu/packages/netpbm.scm (netpbm)[arguments]: Patch a path in the 'configure'
phase.
parent c7cf43dd
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,9 @@ (define-syntax drop
;; 'gsc', so look for that instead.
(substitute* "converter/other/pstopnm.c"
(("\"%s/gs\"")
"\"%s/gsc\"")))
"\"%s/gsc\"")
(("/usr/bin/gs")
(string-append (assoc-ref inputs "ghostscript") "/bin/gsc"))))
#t))
(add-before 'check 'setup-check
(lambda _
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment