There were some bogons with redirection to /dev/ttyv1 lurking here.

Fix them.
This commit is contained in:
Jordan K. Hubbard 1994-11-13 07:27:36 +00:00
parent ef53d2f8b6
commit c4115cc446
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4431
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
# putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!).
#
# $Id: bininst,v 1.35 1994/11/13 03:48:55 jkh Exp $
# $Id: bininst,v 1.36 1994/11/13 06:32:40 jkh Exp $
# Some useful constants.
PATH=/usr/bin:/usr/sbin:/bin:/sbin:/stand
@ -479,7 +479,7 @@ extract_dist()
{
if [ -f extract.sh ]; then
message "Extracting distribution.. Please wait!"
sh ./extract.sh > /dev/ttyv1 2>&1
sh ./extract.sh < /dev/ttyv1 > /dev/ttyv1 2>&1
else
error "Improper distribution. No installation script found."
fi

View File

@ -42,7 +42,7 @@ DO_THE_FUNKY_CHICKEN
for i in $TARGETS; do
abbrevname=`echo $i | sed -e 's/XFree86-3.1-//' -e 's/.tar.gz//'`
echo "if dialog --title \"Install Request\" --yesno \"Do you wish to install the ${abbrevname} distribution?\" 6 72; then dialog --title \"Progress\" --infobox \"Installing $i\" 6 72; tar --unlink -xvzf $i -C /usr > /dev/ttyv1 2>&1 ; fi" >> extract.sh
echo "if dialog --title \"Install Request\" --yesno \"Do you wish to install the ${abbrevname} distribution?\" 6 72; then dialog --title \"Progress\" --infobox \"Installing $i\" 6 72; tar --unlink -xzf $i -C /usr; fi" >> extract.sh
done
cat >> extract.sh << OH_YEAH_BABY_GET_DOWN