[Bug 190814] perl + threads options on graphics/ImageMagick throws error..

bz-noreply at freebsd.org bz-noreply at freebsd.org
Mon Jun 9 01:03:45 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190814

--- Comment #1 from Michelle Sullivan <michelle at sorbs.net> ---
You might want to change:

/bin/sh -c 'case `perl --version` in *freebsd-thread*) echo yes ;; esac'

to:

/bin/sh -c 'case `which perl >/dev/null && perl --version` in *freebsd-thread*)
echo yes ;; esac'

or:

/bin/sh -c 'if perl --version | grep -q freebsd-thread; then echo yes; fi'

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list