diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-01 23:48:56 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-02 10:58:59 +0200 |
commit | 0d3c536d0535fb7d50c123dd8b9d3fdf5d5dc973 (patch) | |
tree | 6e8c716f2f6b1c7c3129d81a32cfc269e0587203 /Makefile.in | |
parent | a323a7df85c6b782cdbd2a35ba0498ceeeb40dec (diff) |
fix make test-install on WNT
Change-Id: I681f2c4989b88943fe57e6173554a019539a18cc
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 450d674a382f..050e7a1485a0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -299,14 +299,14 @@ endif @echo "If you want to edit the .ui files with glade first execute:" @echo @echo "export GLADE_CATALOG_SEARCH_PATH=$(TESTINSTALLDIR)/share/glade" -ifeq ($(OS),LINUX) +ifneq ($(OS),MACOSX) @echo @echo "Test installation finished, you can now execute:" @echo - @echo "$(TESTINSTALLDIR)/program/soffice" -else ifeq ($(OS),MACOSX) + @echo " $(TESTINSTALLDIR)/program/soffice" +else @echo - @echo "Developer installation finished, you can now run:" + @echo "Test installation finished, you can now run:" @echo @echo " open $(TESTINSTALLDIR)/LibreOffice.app" @echo |