Date: Tue, 10 Aug 2010 12:26:21 +0900 From: Pontus Stenetorp <pontus@stenetorp.se> To: openoffice@freebsd.org Subject: editors/openoffice.org-3 fails to build on FreeBSD 8.1-RELEASE AMD64 (patch attached) Message-ID: <AANLkTi=Jvi80eywKPL9fkUDn9fgkV4TWD42KDq4OU4C7@mail.gmail.com>
next in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
Dear OpenOffice mailing list,
When trying to build editors/openoffice.org-3 after updating to
FreeBSD 8.1-RELEASE AMD64 I got complaints of a missing file
FreeBSDAMDEnv.Set and subsequently all other files originating from a
line under the do-build target although they appeared to be located in
WRKSRC.
I added a fix by forcing the tcsh session launched to cd to the WRKSRC
directory before performing its tasks. The patch is attached to this
mail. I tried verifying if this was a known problem but I could not
locate any matching PR or mention on the mailing list.
enoki# uname -a
FreeBSD enoki.stenetorp.se 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul
19 02:36:49 UTC 2010
root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
Best regards,
Pontus Stenetorp
[-- Attachment #2 --]
--- Makefile.old 2010-08-09 17:17:03.000000000 +0900
+++ Makefile 2010-08-09 17:09:26.000000000 +0900
@@ -204,7 +204,7 @@
do-build:
@cd ${WRKSRC} ; ./bootstrap
- @cd ${WRKSRC} ; ${SETENV} "LANG=C" "LC_ALL=C" "TMP=${WRKSRC}" ${TCSH} -c "source ${FREEBSD_ENV_SET} ; cd instsetoo_native ; build.pl --checkmodules ; build.pl -P${MAKE_JOBS_NUMBER} --all --html --dontgraboutput"
+ @cd ${WRKSRC} ; ${SETENV} "LANG=C" "LC_ALL=C" "TMP=${WRKSRC}" ${TCSH} -c "cd ${WRKSRC} ; source ${FREEBSD_ENV_SET} ; cd instsetoo_native ; build.pl --checkmodules ; build.pl -P${MAKE_JOBS_NUMBER} --all --html --dontgraboutput"
.if ${LOCALIZED_LANG} == "alllangs"
@${MAKE} languagepack
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?AANLkTi=Jvi80eywKPL9fkUDn9fgkV4TWD42KDq4OU4C7>
