From owner-freebsd-openoffice@FreeBSD.ORG Sun Jul 8 21:40:10 2007 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8189316A400 for ; Sun, 8 Jul 2007 21:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6FFB713C487 for ; Sun, 8 Jul 2007 21:40:10 +0000 (UTC) (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 l68Le9Fu075916 for ; Sun, 8 Jul 2007 21:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l68Le9qh075915; Sun, 8 Jul 2007 21:40:09 GMT (envelope-from gnats) Date: Sun, 8 Jul 2007 21:40:09 GMT Message-Id: <200707082140.l68Le9qh075915@freefall.freebsd.org> To: openoffice@FreeBSD.org From: "Dr. A. Haakh" Cc: Subject: Re: ports/114050: editors/openoffice.org-2 - OpenOffice 2.2.1/MOZ: dmake: Error code 1, while making './unxfbsdi.pro/misc/build/so_moz_include_files' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Dr. A. Haakh" List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jul 2007 21:40:10 -0000 The following reply was made to PR ports/114050; it has been noted by GNATS. From: "Dr. A. Haakh" To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/114050: editors/openoffice.org-2 - OpenOffice 2.2.1/MOZ: dmake: Error code 1, while making './unxfbsdi.pro/misc/build/so_moz_include_files' Date: Sun, 08 Jul 2007 22:58:50 +0200 See also ports/114100 This is basically a bug in gcp (coreutils-6.9_1). 'gcp -pRL ...' cannot find the right file-permissions when following symbolic links. As FreeBSD's cp seems do do the right thing (cp -pRL ...did the job for me) a solution would be to change moz/extractfiles.mk and include the FreeBSD-clause at line 260 .ELSE .IF $(OS) == "FreeBSD" $(COPY) -pRL $(INCLUDE_PATH)* $(INCLUDE_DIR) $(COPY) -pRL $(PUBLIC_PATH)* $(INCLUDE_DIR) .ELSE .IF "$(OS)"!="SOLARIS" $(GNUCOPY) -pRL $(INCLUDE_PATH)* $(INCLUDE_DIR) $(GNUCOPY) -pRL $(PUBLIC_PATH)* $(INCLUDE_DIR) .ELSE # "$(OS)"!="SOLARIS" $(COPY) -pr $(INCLUDE_PATH)* $(INCLUDE_DIR) $(COPY) -pr $(PUBLIC_PATH)* $(INCLUDE_DIR) .ENDIF # "$(OS)"!="SOLARIS" If this is the only use of the coreutils, then we might also drop that dependency. Dr. Andreas Haakh