qma: pipe output through col -b to fix issues with UTF-8 1.0.18
authorMichael Prokop <mika@grml.org>
Thu, 20 Sep 2007 19:58:29 +0000 (21:58 +0200)
committerMichael Prokop <mika@grml.org>
Thu, 20 Sep 2007 19:58:29 +0000 (21:58 +0200)
debian/changelog
usr_bin/qma

index 84e263a..965581b 100644 (file)
@@ -1,3 +1,10 @@
+grml-scripts (1.0.18) unstable; urgency=low
+
+  * qma: pipe output through 'col -b' to fix issues with UTF-8.
+    Thanks for the solution, wuehlmaus!
+
+ -- Michael Prokop <mika@grml.org>  Thu, 20 Sep 2007 21:57:21 +0200
+
 grml-scripts (1.0.17) unstable; urgency=low
 
   * Drop console-tools from depends and move it to grml-autoconfig
index 1a4c573..cece1da 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>, Matthias Kopfermann <maddi@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Sam Dez 16 17:24:05 CET 2006 [maddi]
+# Latest change: Don Sep 20 21:56:52 CEST 2007 [mika]
 ################################################################################
 
 . /etc/grml/lsb-functions
@@ -56,7 +56,7 @@ QUICKMAN="${MANDIR}/${MANPAGE}${SECTIONFILE}.txt.lzo"
 if ! [ -f "$QUICKMAN" ] ; then
    einfo "Writing manpage to $QUICKMAN"
    if man $SECTION $MANPAGE 1>/dev/null ; then
-      man $SECTION $MANPAGE | lzop -U >$QUICKMAN ; eend $?
+      man $SECTION $MANPAGE | col -b | lzop -U >$QUICKMAN ; eend $?
       einfo "Compressing manpage with lzop"
       eend $?
    else