diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-01 02:27:25 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-01 02:27:25 +0300 |
commit | 108e05c56db08b51c3ceed5e6219b364d202d109 (patch) | |
tree | 615b6528a30141ce65a0357248fec9b486d325a7 | |
parent | 84acbe5f467834a2c7b2d79d7d58a762ea7462d8 (diff) |
Tell to run LibreOffice.app on MacOSX, not soffice.bin
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index bc55b978beaa..47d2e593e8e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -32,10 +32,14 @@ dev-install: build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && \ cd @abs_builddir@ && ln -s $$SOLARVER/$$INPATH/installation/opt/ install && \ echo "" && \ - echo "Developer installation finished, you can now execute:" && \ - echo "cd @abs_builddir@/install/program" && \ + echo "Developer installation finished, you can now execute:" + @if test `uname -s` = Darwin; then \ + echo open install/LibreOffice.app; \ + else \ + echo "cd @abs_builddir@/install/program" && \ echo ". ooenv" && \ - echo "./soffice.bin" + echo "./soffice.bin"; \ + fi distclean: dmake/dmake@EXEEXT_FOR_BUILD@ @. ./*Env.Set.sh && \ |