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.
This commit is contained in:
parent
c7cf43ddec
commit
344e0f5621
|
@ -135,7 +135,9 @@
|
|||
;; '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 _
|
||||
|
|
Loading…
Reference in New Issue