Hi Anibal,

here is the patch to solve this bug.
##########################################################
--- Unix-only/KDE3-only/kantiword.sh.orig       2008-03-04
15:27:34.000000000 -0300
+++ Unix-only/KDE3-only/kantiword.sh    2008-03-04 15:29:40.000000000 -0300
@@ -9,9 +9,9 @@
     echo "Would you like to install an icon on your Desktop, where you"
     echo "will be able to drop an *.doc file on to? It will be displayed"
     echo "as a PDF document or as plain text (if no PDF viewer available)."
-    echo -n "[Y/n]: > "
+    echo "[Y/n]: > "
     read n
-    if [ x$n == "xy" ] || [ x$n == "xY" ] || [ x$n == "x" ]
+    if [ x$n = "xy" ] || [ x$n = "xY" ] || [ x$n = "x" ]
     then
         if [ -r /etc/papersize ]
        then
@@ -24,12 +24,12 @@
            echo "'a' for output papersize A4,"
            echo "'l' for letter or"
            echo "'n' for cancel."
-           echo -n "[a/l/N]: > "
+           echo "[a/l/N]: > "
            read n
        fi
-        if [ x$n == "xa" ] || [ x$n == "xa4" ]; then
+        if [ x$n = "xa" ] || [ x$n = "xa4" ]; then
            cp -f /usr/share/antiword/kantiword.eu.desktop
~/Desktop/kantiword.desktop
-       elif [ x$n == "xl" ] || [ x$n == "xletter" ]; then
+       elif [ x$n = "xl" ] || [ x$n = "xletter" ]; then
            cp -f /usr/share/antiword/kantiword.us.desktop
~/Desktop/kantiword.desktop
        fi
     fi
#########################################################################
best regards.
-- 
Leonardo Rodrigues de Mello
jabber: [EMAIL PROTECTED]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to