summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-06-17 11:18:15 +0300
committerTor Lillqvist <tml@collabora.com>2015-06-17 11:25:51 +0300
commite93a7cff80f277a1b0e54dd4f94bd7b045c6a85c (patch)
tree92d67d8b5ee1f2e67c1e174dc4167ca854085c60 /configure.ac
parent6dcd81f81be0067425f42f0898316d7f52e279d6 (diff)
Improve instructions printed at end
Using "issue" instead of "run", but not consistently, is silly. There is no instdir/program/soffice on OS X. Change-Id: Ic94a969b268981981842101ed9c530a8f4211a15
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 11 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index ae350a819267..4ec301ca9a6a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13150,10 +13150,10 @@ fi
cat << _EOF
****************************************************************************
-To build, issue:
+To build, run:
$GNUMAKE
-For details, run:
+To view some help, run:
$GNUMAKE help
_EOF
@@ -13161,9 +13161,16 @@ _EOF
if test $_os != WINNT -a "$CROSS_COMPILING" != TRUE; then
cat << _EOF
After the build has finished, you can immediately run it using:
-instdir/program/soffice
+_EOF
+
+ if test $_os = Darwin; then
+ echo open instdir/$PRODUCTNAME.app
+ else
+ echo instdir/program/soffice
+ fi
+ cat << _EOF
-If you want to run the smoketest, issue:
+If you want to run the smoketest, run:
$GNUMAKE check
_EOF