To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=112761 Issue #|112761 Summary|instsetoo_native: braks without PKGFORMAT set Component|Installation Version|DEV300m83 Platform|Unknown URL| OS/Version|All Status|NEW Status whiteboard| Keywords| Resolution| Issue type|DEFECT Priority|P2 Subcomponent|code Assigned to|is Reported by|rene
------- Additional comments from [email protected] Mon Jun 28 14:48:47 +0000 2010 ------- r...@frodo:~/OpenOffice.org/DEV300_m83/instsetoo_native$ unset pkgformatr...@frodo:~/OpenOffice.org/DEV300_m83/instsetoo_native$ build build -- version: 275224 ============= Building module instsetoo_native ============= Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/inc_openoffice/windows/msi_languages Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/inc_openoffice/unix Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/util dmake: makefile.mk: line 216: Error: -- Missing targets or attributes in rule Breaks my builds. This patch fixes it: --- a/instsetoo_native/util/makefile.mk +++ b/instsetoo_native/util/makefile.mk @@ -201,6 +201,7 @@ .ENDIF # "$(BUILD_SPECIAL)"!="" +.IF "$(PKGDORMAT)" != "" $(foreach,i,$(alllangiso) openoffice_$i) : $...@{$(PKGFORMAT:^".")} .IF "$(MAKETARGETS)"!="" .IF "$(MAKETARGETS:e)"=="" && "$(MAKETARGETS:s/_//)"!="$(MAKETARGETS)" @@ -277,6 +278,7 @@ @echo cannot pack nothing... .ENDIF # "$(alllangiso)"!="" +.ENDIF .IF "$(LOCALPYFILES)"!="" $(foreach,i,$(alllangiso) openoffice_$i{$(PKGFORMAT:^".") .archive} openofficewithjre_$i{$(PKGFORMAT:^".")} openofficedev_$i{$(PKGFORMAT:^".")} broffice_$i{$(PKGFORMAT:^".")} brofficewithjre_$i{$(PKGFORMAT:^".")} brofficedev_$i{$(PKGFORMAT:^".")} sdkoo_$i{$(PKGFORMAT:^".")}) updatepack : $(LOCALPYFILES) and results in $ build build -- version: 275224 ============= Building module instsetoo_native ============= Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/inc_openoffice/windows/msi_languages Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/inc_openoffice/unix Entering /home/rene/OpenOffice.org/DEV300_m83/instsetoo_native/util cannot pack nothing... r...@frodo:~/OpenOffice.org/DEV300_m83/instsetoo_native$ Not sure about the actual patch, as smoketestoo_native will expect a "archive" build, but in emergency you can do a build in instsetoo_native then again with PKGFORMAT=archive... --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
