[subversion-commit] SVN tetex commit + diffs: r500 - tex-common/trunk/scripts

Norbert Preining preining-guest at costa.debian.org
Sat Feb 11 17:34:26 UTC 2006


Author: preining-guest
Date: 2006-02-11 17:34:22 +0000 (Sat, 11 Feb 2006)
New Revision: 500

Modified:
   tex-common/trunk/scripts/postinst-tex
   tex-common/trunk/scripts/postrm-tex
Log:
also use printf in postinst/rm-tex


Modified: tex-common/trunk/scripts/postinst-tex
===================================================================
--- tex-common/trunk/scripts/postinst-tex	2006-02-11 17:22:13 UTC (rev 499)
+++ tex-common/trunk/scripts/postinst-tex	2006-02-11 17:34:22 UTC (rev 500)
@@ -14,7 +14,7 @@
 update_lsr_files ()
 {
     tempfile=`mktemp -p /tmp mktexlsr.XXXXXXXX`
-    echo -n "Running mktexlsr. This may take some time. ..."
+    printf "Running mktexlsr. This may take some time..."
     if mktexlsr > $tempfile 2>&1 ; then
         rm -f $tempfile
 	echo " done."
@@ -31,7 +31,7 @@
 create_fontmaps ()
 {
     tempfile=`mktemp -p /tmp updmap.XXXXXXXX`
-    echo -n "Running updmap-sys. This may take some time. ..."
+    printf "Running updmap-sys. This may take some time..."
     if updmap-sys > $tempfile 2>&1 ; then
     	rm -f $tempfile
 	echo " done."

Modified: tex-common/trunk/scripts/postrm-tex
===================================================================
--- tex-common/trunk/scripts/postrm-tex	2006-02-11 17:22:13 UTC (rev 499)
+++ tex-common/trunk/scripts/postrm-tex	2006-02-11 17:34:22 UTC (rev 500)
@@ -15,7 +15,7 @@
 {
     tempfile=`mktemp -p /tmp checkrun.XXXXXXXX`
     if which $1  >/dev/null; then
-        echo -n "Running $*. This may take some time. ..."
+        printf "Running $*. This may take some time..."
 	set +e
 	if $* > $tempfile 2>&1 ; then
 	    rm -f $tempfile




More information about the Pkg-tetex-commits mailing list