summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-06-01 02:27:25 +0300
committerTor Lillqvist <tml@iki.fi>2011-06-01 02:27:25 +0300
commit108e05c56db08b51c3ceed5e6219b364d202d109 (patch)
tree615b6528a30141ce65a0357248fec9b486d325a7 /Makefile.in
parent84acbe5f467834a2c7b2d79d7d58a762ea7462d8 (diff)
Tell to run LibreOffice.app on MacOSX, not soffice.bin
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
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 && \