From owner-freebsd-ports@FreeBSD.ORG Tue Mar 9 13:46:11 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ABE51065670 for ; Tue, 9 Mar 2010 13:46:11 +0000 (UTC) (envelope-from wenheping@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9778FC1B for ; Tue, 9 Mar 2010 13:46:11 +0000 (UTC) Received: by gyg8 with SMTP id 8so2015049gyg.13 for ; Tue, 09 Mar 2010 05:46:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=9hTIQnOj7+nc3h5GTuSLZuUwNaZs+hRgb5BFQvACl8M=; b=XXYXyUGtmomwHCGaBjWzlDFjtdxhU8b3kAycndjuoY+kbAjDep/2bZEjZr5Lx1qF6T eckzr37dwjOi3Z9E/vwnXHeLwbpVK7uz+0y32cS6JDBxXuCIlSsNGxS60d0lwh9sspiY c5UHAq57rVgFpdUf/lOTVA+32imEn6aTzl0KI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Ir351QEGHtb6AP+f6yAt529lZ3Nmx2rw9Nh8ZeTUbM0eJagwrxFDdt6gYhWQ8sizfX rEzVgvC75+3jLr8IkR4gPWNw/1AmEvr42xL7HUq20ZFWvGR38eUUhFrk5GhzeXDdlGaC rF+xP6CzflvgvUvs8nSWLQSDkbCz9BxO132Os= MIME-Version: 1.0 Received: by 10.90.42.17 with SMTP id p17mr66829agp.59.1268142370484; Tue, 09 Mar 2010 05:46:10 -0800 (PST) Date: Tue, 9 Mar 2010 21:46:10 +0800 Message-ID: <7be7a2801003090546p4f2433b6x343d6194c08c1a29@mail.gmail.com> From: wen heping To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: Should this line removed from Makefile? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Mar 2010 13:46:11 -0000 Hi, all: In www category, there are some ports with a line as: 1 @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} It always followed by this line: 2 @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST} while some other ports do not have line 2. Is line 2 needed ? In my opion, line 2 changes nothing to ${TMPPLIST} in this case, so line 2 is not needed. Any comment ? wen