On Saturday 19 April 2008, Bastian Blank wrote: > > make[1]: Entering directory `/build/buildd/openoffice.org-voikko-2.2' > > buildoxtMETA-INF > > make[1]: buildoxtMETA-INF: Command not found
The command here should be mkdir -p build/oxt/META-INF which leads me to believe that neither $(MKDIR) nor $(PS) (that should get defined in /usr/lib/openoffice/sdk/settings/settings.mk) are properly defined. This would be the case if platform detection fails in that file. The detection is done by (...) # test for the platform PLATFORM := $(shell $(PRJ)/config.guess | cut -d"-" -f3,4) (...) ifeq "$(PLATFORM)" "linux-gnu" (...) Maybe this does not work on s390? In addition to this, you should make sure that $(UNOPKG_PLATFORM) gets defined correctly as well. If it does not, the package may build but fail to work when installed. (I know, we should test for empty values of these variables and explicitly fail the build as needed. That will be done in the next upstream release.) Harri (upstream of openoffice.org-voikko) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

