diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-12 16:00:11 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-12 16:00:11 +0300 |
commit | b9d614cb027e35c809ae7f128ce3487b6c3adca5 (patch) | |
tree | ab07903aaa94a50ee01386fa3fe3a2b6a50a29aa | |
parent | d90d2fc71ab0c11a8688adbf110a2c7a111ce0f4 (diff) |
Add sax and stoc, use merged list in cross-build-toolset
-rw-r--r-- | Makefile.in | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index 0d70a9f225fb..1abdfd83dfe5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -63,20 +63,25 @@ cross-build-toolset: comphelper \ jvmfwk \ regexp \ + sax \ + stoc \ i18npool \ unodevtools \ gettext \ dictionaries \ o3tl \ basegfx \ - tools \ + GBUILD:comphelper \ + GBUILD:tools \ rsc; do \ - (cd $$D && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl); \ - done; \ - for D in \ - comphelper \ - tools; do \ - (cd $$D && make -r -j@BUILD_MAX_JOBS@); \ + case $$D in \ + GBUILD:*) \ + (cd $${D#*:} && make -r -j@BUILD_MAX_JOBS@) \ + ;; \ + *) \ + (cd $$D && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) \ + ;; \ + esac; \ done endif |