diff -durN dialog-0.69.orig/samples/gauge-sh dialog-0.69/samples/gauge-sh --- dialog-0.69.orig/samples/gauge-sh Tue Dec 19 14:29:06 1995 +++ dialog-0.69/samples/gauge-sh Mon Oct 30 10:44:37 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -DIALOG=${DIALOG=../dialog} +DIALOG=/usr/bin/dialog (echo "10" ; sleep 2 ; diff -durN dialog-0.69.orig/samples/infobox dialog-0.69/samples/infobox --- dialog-0.69.orig/samples/infobox Fri Dec 15 12:49:02 1995 +++ dialog-0.69/samples/infobox Mon Oct 30 10:45:52 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -D=${DIALOG=../dialog} +D=/usr/bin/dialog # this one means that "Esc" from any dialog will end the overall sample check='eval if [ $? -eq 255 ] ; then clear; exit 1; fi' diff -durN dialog-0.69.orig/samples/inputbox dialog-0.69/samples/inputbox --- dialog-0.69.orig/samples/inputbox Tue Dec 19 14:28:54 1995 +++ dialog-0.69/samples/inputbox Mon Oct 30 10:44:51 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -DIALOG=${DIALOG=../dialog} +DIALOG=/usr/bin/dialog $DIALOG --title "INPUT BOX" --clear \ --inputbox "Hi, this is an input dialog box. You can use \n\ diff -durN dialog-0.69.orig/samples/menubox dialog-0.69/samples/menubox --- dialog-0.69.orig/samples/menubox Thu Dec 21 22:34:31 1995 +++ dialog-0.69/samples/menubox Mon Oct 30 10:45:05 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -D=${DIALOG=../dialog} +D=/usr/bin/dialog tmp=/tmp/menu.tmp.$$ $D --clear --title "MENU BOX" \ diff -durN dialog-0.69.orig/samples/msgbox dialog-0.69/samples/msgbox --- dialog-0.69.orig/samples/msgbox Fri Dec 15 12:49:02 1995 +++ dialog-0.69/samples/msgbox Mon Oct 30 10:45:52 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -D=${DIALOG=../dialog} +D=/usr/bin/dialog # this one means that "Esc" from any dialog will end the overall sample check='eval if [ $? -eq 255 ] ; then clear; exit 1; fi' diff -durN dialog-0.69.orig/samples/radiolist dialog-0.69/samples/radiolist --- dialog-0.69.orig/samples/radiolist Tue Dec 19 14:45:02 1995 +++ dialog-0.69/samples/radiolist Mon Oct 30 10:45:29 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -DIALOG=${DIALOG=../dialog} +DIALOG=/usr/bin/dialog $DIALOG --backtitle "Red Hat Software Linux" \ --title "RADIOLIST BOX" --clear \ diff -durN dialog-0.69.orig/samples/textbox dialog-0.69/samples/textbox --- dialog-0.69.orig/samples/textbox Tue Dec 19 13:28:52 1995 +++ dialog-0.69/samples/textbox Mon Oct 30 10:45:41 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -DIALOG=${DIALOG=../dialog} +DIALOG=/usr/bin/dialog cat << EOF > /tmp/textbox.tmp.$$ Hi, this is a text dialog box. It can be used to display text from a file. diff -durN dialog-0.69.orig/samples/yesno dialog-0.69/samples/yesno --- dialog-0.69.orig/samples/yesno Fri Dec 15 12:49:02 1995 +++ dialog-0.69/samples/yesno Mon Oct 30 10:45:52 2000 @@ -2,10 +2,7 @@ # # I prefer to tell "samples/yesno" for the source directory -if [ -f ./dialog ]; then - DIALOG=./dialog -fi -D=${DIALOG=../dialog} +D=/usr/bin/dialog # this one means that "Esc" from any dialog will end the overall sample check='eval if [ $? -eq 255 ] ; then clear; exit 1; fi'