diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-07-26 15:32:58 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-07-26 15:34:38 +0200 |
commit | d2e84678afdc1729e551ef76be44d32025ca2236 (patch) | |
tree | 466571631af97f4d7e621e6f04b519c728b9fa20 /Makefile.in | |
parent | edaa5424c6045d7dbc8bbc5031517102697df744 (diff) |
make dev-install creates a linked installation again.
Also, skip building of stuff that we have already built.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index d0b70872daee..510455a5d22f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,13 +101,14 @@ install: dev-install: @. ./Env.Host.sh && \ - cd smoketestoo_native && \ + cd smoketestoo_native && \ export SAL_USE_VCLPLUGIN="svp" && \ - build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && \ + build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all:instsetoo_native -- -P@BUILD_MAX_JOBS@ && \ cd @abs_builddir@ && ln -s $$SOLARVER/$$INPATH/installation/opt/ install && \ echo "" && \ - echo "Developer installation finished, you can now execute:" - @if test `uname -s` = Darwin; then \ + $$SOLARENV/bin/linkoo $$SRC_ROOT/install $$SRC_ROOT && \ + echo && echo "Developer installation finished, you can now execute:" && echo && \ + if test `uname -s` = Darwin; then \ echo open install/LibreOffice.app; \ else \ echo "cd @abs_builddir@/install/program" && \ |