From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Dec 12 16:50:04 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 9AE9816A420 for ; Mon, 12 Dec 2005 16:50:04 +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 C063C43D4C for ; Mon, 12 Dec 2005 16:50:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBCGo3rR093668 for ; Mon, 12 Dec 2005 16:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBCGo3g9093667; Mon, 12 Dec 2005 16:50:03 GMT (envelope-from gnats) Resent-Date: Mon, 12 Dec 2005 16:50:03 GMT Resent-Message-Id: <200512121650.jBCGo3g9093667@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, "Franz Klammer" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 665F016A41F for ; Mon, 12 Dec 2005 16:48:55 +0000 (GMT) (envelope-from klammer@webonaut.com) Received: from sv02.webonaut.com (kirk.webonaut.com [212.41.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id D376F43D66 for ; Mon, 12 Dec 2005 16:48:50 +0000 (GMT) (envelope-from klammer@webonaut.com) Received: from localhost (localhost [127.0.0.1]) by sv02.webonaut.com (Postfix) with ESMTP id E6FCB7649B for ; Mon, 12 Dec 2005 17:48:50 +0100 (CET) Received: from sv02.webonaut.com ([127.0.0.1]) by localhost (sv02.webonaut.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 74197-01 for ; Mon, 12 Dec 2005 17:48:48 +0100 (CET) Received: from acer.webonaut.com (unknown [213.147.173.194]) by sv02.webonaut.com (Postfix) with ESMTP id 6467876498 for ; Mon, 12 Dec 2005 17:48:48 +0100 (CET) Message-Id: <1134406153.0@acer.webonaut.com> Date: Mon, 12 Dec 2005 17:49:13 +0100 From: "Franz Klammer" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/90292: 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: Mon, 12 Dec 2005 16:50:04 -0000 >Number: 90292 >Category: ports >Synopsis: >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: Mon Dec 12 16:50:03 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Franz Klammer >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD 6.0-STABLE #11: Wed Nov 23 12:22:10 CET 2005 root@acer.webonaut.com:/usr/obj/usr/src/sys/ACER292 >Description: chmod a+r of the files while the install-process end with an error if a file with whitespaces exists. e.g.: i've a file named "Copy of style.css" and get the errors like: Copy ... does not exists of ... does not exists changed patch-ab to do not use "-exec chmod" instead of "-print | xargs" as used in chmod the directories. >How-To-Repeat: >Fix: --- apache13_patch-ab.diff begins here --- --- apache13/files/patch-ab.orig Mon Dec 12 17:26:09 2005 +++ apache13/files/patch-ab Mon Dec 12 17:40:43 2005 @@ -30,7 +30,7 @@ - -@if [ -d $(TOP)/htdocs/manual ]; then \ + (cd $(root)$(htdocsdir)-dist/ && $(TAR) -xf -); \ + find $(root)$(htdocsdir)-dist/ -type d -exec chmod a+rx {} \; ; \ -+ find $(root)$(htdocsdir)-dist/ -type f -print | xargs chmod a+r ; ++ find $(root)$(htdocsdir)-dist/ -type f -exec chmod a+r {} \; ; echo "Copying tree $(TOP)/htdocs/manual -> $(root)/$(manualdir)/"; \ (cd $(TOP)/htdocs/manual/ && $(TAR) $(TAROPT) - *) |\ (cd $(root)$(manualdir)/ && $(TAR) -xf -); \ --- apache13_patch-ab.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: