Package: apt
Version: 0.3.15
Severity: wishlist

Here is a patch to /usr/lib/dpkg/methods/apt/install to have the last
question (delete downloaded files) with the same look&feel as the
others.

David.
--- /usr/lib/dpkg/methods/apt/install   Sun Dec  5 07:55:30 1999
+++ install     Sat Jan  1 17:21:08 2000
@@ -20,15 +20,15 @@
        local ans def defp
        if [ "$2" ];then
                case $2 in
-                       Y|y)    defp="(Y/n)" def=y;;
-                       N|n)    defp="(y/N)" def=n;;
+                       Y|y)    defp="[Y/n]" def=y;;
+                       N|n)    defp="[y/N]" def=n;;
                        *)      echo "Bad default setting!" 1>&2; exit 1;;
                esac
        else
-               defp="(y/N)" def=n
+               defp="[y/N]" def=n
        fi
        while :;do
-               echo -n "$1$defp" 1>&3
+               echo -n "$1 $defp" 1>&3
                read ans
                case $ans in
                        Y|y|N|n)        break;;
@@ -72,7 +72,7 @@
        ;;
      prompt)
        exec 3>&1
-       if [ `yesno "Do you want to erase the downloaded .deb files " y` = y ]; 
then
+       if [ `yesno "Do you want to erase the downloaded .deb files?" y` = y ]; 
then
           $APTGET clean && echo "Press enter to continue." && read RES && exit 
0;
        fi
        ;;

Reply via email to