From owner-cvs-ports@FreeBSD.ORG Wed Feb 16 02:50:05 2011 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C88E10656C2; Wed, 16 Feb 2011 02:50:05 +0000 (UTC) (envelope-from sahil@tandon.net) Received: from spartan.hamla.org (spartan.hamla.org [206.251.255.30]) by mx1.freebsd.org (Postfix) with ESMTP id F1F978FC42; Wed, 16 Feb 2011 02:50:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by spartan.hamla.org (Postfix) with ESMTP id 43EF01713A; Tue, 15 Feb 2011 21:50:04 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tandon.net; h= user-agent:in-reply-to:content-disposition:content-type :content-type:mime-version:references:reply-to:message-id :subject:subject:from:from:date:date:received:received; s=aegis; t=1297824604; bh=JznixZUy9Hy+9K+uXcqNtNQAs4FcgfVmygGFaksW1Jc=; b= RjQVHnXqDXKr69IfuMZdjEXecJjWFt9ZKJntzCm4xhP8advJXqR9eV2kLsg35EDl 3X9hyFt0Dj8ehB9vwRd/8KIbOd8VCRd/XZTb/p6FMJkpzU2Dm+XfxbZwAcV1XJXU W+qWkEm/jwmDrCxSMeeG+sPcqXhMcLuc4LPADJLXlbM= X-Virus-Scanned: by ClamAV at spartan.hamla.org Received: from spartan.hamla.org ([127.0.0.1]) by localhost (spartan.hamla.org [127.0.0.1]) (amavisd-new, port 10027) with LMTP id Q4h4ZagmReW6; Tue, 15 Feb 2011 21:50:04 -0500 (EST) Received: from magic.hamla.org (cpe-69-201-179-80.nyc.res.rr.com [69.201.179.80]) by spartan.hamla.org (Postfix) with ESMTPSA id 2C55C170F9; Tue, 15 Feb 2011 21:50:03 -0500 (EST) Date: Tue, 15 Feb 2011 21:50:00 -0500 From: Sahil Tandon To: Wen Heping Message-ID: <20110216025000.GD85699@magic.hamla.org> References: <201102160228.p1G2Sa1l045637@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="NMuMz9nt05w80d4+" Content-Disposition: inline In-Reply-To: <201102160228.p1G2Sa1l045637@repoman.freebsd.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/bozohttpd Makefile distinfo ports/www/bozohttpd/files patch-bozohttpd.8 X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sahil Tandon List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Feb 2011 02:50:05 -0000 --NMuMz9nt05w80d4+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, 2011-02-16 at 02:28:36 +0000, Wen Heping wrote: > wen 2011-02-16 02:28:36 UTC > > FreeBSD ports repository > > Modified files: > www/bozohttpd Makefile distinfo > www/bozohttpd/files patch-bozohttpd.8 > Log: > - Update to 20100920 > - Fix build with custom PREFIX Would you consider a small change (attached) that makes the correct substitution when LOCALBASE != PREFIX? Thanks! -- Sahil Tandon --NMuMz9nt05w80d4+ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="bozohttpd.diff" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/bozohttpd/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- Makefile 16 Feb 2011 02:28:36 -0000 1.19 +++ Makefile 16 Feb 2011 02:42:51 -0000 @@ -55,6 +55,6 @@ PLIST_FILES= libexec/bozohttpd post-patch: - @${REINPLACE_CMD} -e 's|@@PREFIX@@|${LOCALBASE}|g' ${WRKSRC}/bozohttpd.8 + @${REINPLACE_CMD} -e 's|@@PREFIX@@|${PREFIX}|g' ${WRKSRC}/bozohttpd.8 .include --NMuMz9nt05w80d4+--