From 8031fa3a65b22a91b0c90c5b9d4b27a47101f4ef Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 9 Oct 2012 15:08:16 +0400 Subject: [PATCH] Fix name of LibreOffice executable file. Signed-off-by: Andrew Borodin --- misc/ext.d/doc.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/ext.d/doc.sh.in b/misc/ext.d/doc.sh.in index 9fcf32b00..79fc381a8 100644 --- a/misc/ext.d/doc.sh.in +++ b/misc/ext.d/doc.sh.in @@ -24,8 +24,8 @@ staroffice_console() { } get_ooffice_executable() { - which libreoffice >/dev/null 2>&1 && \ - echo "libreoffice" || \ + which loffice >/dev/null 2>&1 && \ + echo "loffice" || \ echo "ooffice" }