diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-09-23 17:44:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-09-23 17:45:18 +0200 |
commit | 611913d4a696f709e2dfd6279438bbf2a48ad4e3 (patch) | |
tree | 0e859b6c7945f591bb8b010cd68508974da3a596 /Makefile.in | |
parent | 13ce988ac8352679a55390894cab2364353bb03c (diff) |
Improved Makefile.in dev-install recipe.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/Makefile.in b/Makefile.in index 1f69b074d4be..9c4ebf9205cf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -24,20 +24,23 @@ build: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ src.downloaded $(CROSS_TOOLSET_RUL dev-install: build @. ./Env.Host.sh && \ - cd smoketestoo_native && \ - build.pl -P@BUILD_NCPUS@ --all:instsetoo_native -- -P@BUILD_MAX_JOBS@ && \ - cd @abs_builddir@ && ln -s $$SOLARVER/$$INPATH/installation/opt/ install && \ - echo "" && \ - $$SOLARENV/bin/linkoo $$SRC_ROOT/install $$SRC_ROOT && \ - install-gdb-printers -a "$$SOLARVER/$$INPATH/installation/opt" -L && \ - 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" && \ - echo ". ./ooenv" && \ - echo "./soffice.bin"; \ - fi + cd smoketestoo_native && \ + build.pl -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && \ + rm -f "@abs_builddir@"/install && \ + ln -s "$$SOLARVER/$$INPATH"/installation/opt/ \ + "@abs_builddir@"/install && \ + printf '\n' && \ + install-gdb-printers -a "$$SOLARVER/$$INPATH/installation/opt" \ + -L && \ + printf \ + '\nDeveloper installation finished, you can now execute:\n\n' \ + && \ + if test `uname -s` = Darwin; then \ + printf 'open %s/install/LibreOffice.app\n' "@abs_builddir@"; \ + else \ + printf 'cd %s/install/program\n. ./ooenv\n./soffice.bin\n' \ + "@abs_builddir@"; \ + fi check : allcheck @true |