editors/openoffice.org-3 fails to build on FreeBSD 8.1-RELEASE AMD64 (patch attached)

Pontus Stenetorp pontus at stenetorp.se
Tue Aug 10 03:50:03 UTC 2010


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 at mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64

Best regards,
    Pontus Stenetorp
-------------- next part --------------
--- 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


More information about the freebsd-openoffice mailing list