Date: Thu, 17 May 2012 03:48:12 GMT From: Masamichi Takatsu <taka2@doga.co.jp> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/167995: [PATCH] building graphics/ImageMagick fails. Message-ID: <201205170348.q4H3mCf3018547@red.freebsd.org> Resent-Message-ID: <201205170350.q4H3o1uo067757@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 167995 >Category: ports >Synopsis: [PATCH] building graphics/ImageMagick fails. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 17 03:50:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Masamichi Takatsu >Release: 9.0-RELEASE-p1 amd64 >Organization: personal >Environment: FreeBSD xs35v2 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building grahics/ImageMagick fails if configuration IMAGEMAGICK_TESTS is enabled. >How-To-Repeat: Execute "make config" and enable IMAGEMAGICK_TESTS. ---operation and result begin--- # cd /usr/ports/graphics/ImageMagick && make config && make .. make check-TESTS check-local .. FAIL: tests/validate-colorspace.sh ---operation and result begin--- >Fix: The error is caused by sheban of tests/validate-colorspace.sh. Rewriting from "/bin/bash" to "/bin/sh" fixes this problem. ---PATCH begin--- --- tests/validate-colorspace.sh.orig 2012-05-03 09:53:58.000000000 +0900 +++ tests/validate-colorspace.sh 2012-05-17 12:27:08.000000000 +0900 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization # dedicated to making software imaging solutions freely available. ---PATCH end--- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205170348.q4H3mCf3018547>