diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-02-18 22:08:06 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-02-18 22:08:06 +0100 |
commit | ba1da290bd44677bdf3576e6b3fcd02a102ed667 (patch) | |
tree | 9bfeaf9b19f351d29b7e8cbc20bce22a16ccbfc6 | |
parent | 85952d9be2ef425fadfe008088eea08cbb11380f (diff) |
Fix build of master without Python scripting.
-rw-r--r-- | instsetoo_native/util/makefile.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/instsetoo_native/util/makefile.mk b/instsetoo_native/util/makefile.mk index da4478cb4..d13c43401 100644 --- a/instsetoo_native/util/makefile.mk +++ b/instsetoo_native/util/makefile.mk @@ -71,9 +71,13 @@ INSTALLDIR=$(OUT) LOCALPYFILES= \ $(BIN)$/uno.py \ $(BIN)$/unohelper.py \ - $(BIN)$/pythonloader.py \ + $(BIN)$/pythonloader.py + +.IF "$(ENABLE_SCRIPTING_PYTHON)" == "YES" +LOCALPYFILES+= \ $(BIN)$/officehelper.py \ $(BIN)$/mailmerge.py +.ENDIF xxxx: echo $(PERL) -w $(SOLARENV)$/bin$/gen_update_info.pl --buildid $(BUILD) --arch "$(RTL_ARCH)" --os "$(RTL_OS)" --lstfile $(PRJ)$/util$/openoffice.lst --product LibreOffice --languages $(subst,$(@:s/_/ /:1)_, $(@:b)) $(PRJ)$/util$/update.xml |