From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 16 12:50:23 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75D8A16A45E for ; Wed, 16 Nov 2005 12:50:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33AFC43D46 for ; Wed, 16 Nov 2005 12:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jAGCoLOm062642 for ; Wed, 16 Nov 2005 12:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jAGCoLhj062641; Wed, 16 Nov 2005 12:50:21 GMT (envelope-from gnats) Resent-Date: Wed, 16 Nov 2005 12:50:21 GMT Resent-Message-Id: <200511161250.jAGCoLhj062641@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Ion-Mihai "IOnut" Tetcu" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22DE416A42C for ; Wed, 16 Nov 2005 12:42:15 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id E9CAA43D5E for ; Wed, 16 Nov 2005 12:42:02 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 20183 invoked from network); 16 Nov 2005 12:41:58 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 16 Nov 2005 12:41:58 -0000 Received: (qmail 23324 invoked by uid 89); 16 Nov 2005 12:41:58 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 16 Nov 2005 12:41:58 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 523EC6127 for ; Wed, 16 Nov 2005 14:42:09 +0200 (EET) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP for ; Wed, 16 Nov 2005 14:42:09 +0200 (EET) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id D09D51C for ; Wed, 16 Nov 2005 14:41:59 +0200 (EET) Message-Id: <1132144919.0@it.buh.cameradicommercio.ro> Date: Wed, 16 Nov 2005 14:41:59 +0200 From: "Ion-Mihai "IOnut" Tetcu" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/89125: [PATCH] www/apache2: Fix IGNORE quoting in Makefile.modules.3rd; unbreak www/mod_vhs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Nov 2005 12:50:23 -0000 >Number: 89125 >Category: ports >Synopsis: [PATCH] www/apache2: Fix IGNORE quoting in Makefile.modules.3rd; unbreak www/mod_vhs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 16 12:50:21 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Ion-Mihai "IOnut" Tetcu >Release: FreeBSD 6.0-STABLE i386 >Organization: Tecnik'93 >Environment: System: FreeBSD 6.0-STABLE #7: Mon Nov 7 14:40:46 EET 2005 >Description: An IGNORE value is quoted and contains a back-trick ( ` ) in Makefile.modules.3rd hence (some) ports that include this file fail with "Syntax error: EOF in backquote substitution" if apache 1.x is installed, e.g. root(itetcu)@it/SU >-SSH-> /usr/ports/www/mod_vhs [14:28:33] 0 # make fetch Syntax error: EOF in backquote substitution *** Error code 2 Attached patch should fix this and unbreak (at least fetch) www/mod_vhs >How-To-Repeat: cd /usr/ports/www/mod_vhs make fetch >Fix: --- Makefile.modules.3rd.diff begins here --- --- Makefile.modules.3rd.orig Wed Nov 16 14:29:53 2005 +++ Makefile.modules.3rd Wed Nov 16 14:31:13 2005 @@ -33,7 +33,7 @@ . endif . endif . ifdef(WITH_APACHE2) -IGNORE= "You have `WITH_APACHE2' variable defined either in environment or in make(1) argumentsm. but apache13 is installed Please undefine and try again." +IGNORE= You have 'WITH_APACHE2' variable defined either in environment or in make(1) argumentsm. but apache13 is installed Please undefine and try again. . endif .endif --- Makefile.modules.3rd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: