Date: Mon, 19 Jul 2004 17:40:24 +0200 (CEST) From: Alex Dupre <ale@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: portmgr@FreeBSD.org Subject: ports/69304: [Patch] Fix handling of BROKEN_WITH_MYSQL Message-ID: <200407191540.i6JFeOrt004624@armada.alexdupre.com> Resent-Message-ID: <200407191550.i6JFo39b074396@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 69304 >Category: ports >Synopsis: [Patch] Fix handling of BROKEN_WITH_MYSQL >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jul 19 15:50:03 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD armada.alexdupre.com 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Wed Jun 30 16:14:27 CEST 2004 alex@armada.alexdupre.com:/usr/obj/usr/src/sys/ARMADA i386 >Description: The IGNORE message isn't displayed since it's not correctly escaped (syntax error). >How-To-Repeat: >Fix: --- bsd.port.mk.diff begins here --- Index: Mk/bsd.port.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.port.mk,v retrieving revision 1.493 diff -u -r1.493 bsd.port.mk --- Mk/bsd.port.mk 17 Jul 2004 14:23:34 -0000 1.493 +++ Mk/bsd.port.mk 19 Jul 2004 15:36:01 -0000 @@ -1493,7 +1493,7 @@ .if defined(BROKEN_WITH_MYSQL) . for VER in ${BROKEN_WITH_MYSQL} . if (${MYSQL_VER} == "${VER}") -IGNORE= "Doesn't work with MySQL version : ${MYSQL_VER} (Doesn't support MySQL ${BROKEN_WITH_MYSQL})" +IGNORE= "Doesn\'t work with MySQL version : ${MYSQL_VER} \(Doesn\'t support MySQL ${BROKEN_WITH_MYSQL}\)" . endif . endfor .endif # BROKEN_WITH_MYSQL --- bsd.port.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407191540.i6JFeOrt004624>