Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 09 Jun 2014 01:03:45 +0000
From:      bz-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 190814] perl + threads options on graphics/ImageMagick throws error..
Message-ID:  <bug-190814-13-O7qDVYdZzl@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-190814-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-190814-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190814

--- Comment #1 from Michelle Sullivan <michelle@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-190814-13-O7qDVYdZzl>