summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-11-13 07:27:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-11-13 07:27:36 +0000
commitc4115cc446b503b6bf0d1874eb41c26841aa19e6 (patch)
tree547e42518ab13ab8a4a9eb3929f52e08d8768054
parentef53d2f8b60c933699b544074073c95124caa566 (diff)
Notes
-rwxr-xr-xrelease/bininst4
-rw-r--r--release/mkxf86extract.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/release/bininst b/release/bininst
index b69dc3fd03f1..c6c09ab95094 100755
--- a/release/bininst
+++ b/release/bininst
@@ -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
diff --git a/release/mkxf86extract.sh b/release/mkxf86extract.sh
index 1256d5a6d028..2798f34afd88 100644
--- a/release/mkxf86extract.sh
+++ b/release/mkxf86extract.sh
@@ -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