configure.ac | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-)
New commits: commit e93a7cff80f277a1b0e54dd4f94bd7b045c6a85c Author: Tor Lillqvist <[email protected]> Date: Wed Jun 17 11:18:15 2015 +0300 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 diff --git a/configure.ac b/configure.ac index ae350a8..4ec301c 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 _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
