Browse Source

+ Now installs also utility binaries

michael 25 years ago
parent
commit
b84675bb21
1 changed files with 4 additions and 6 deletions
  1. 4 6
      install/install.sh

+ 4 - 6
install/install.sh

@@ -8,7 +8,7 @@
 #
 #
 
 
 # Release Version
 # Release Version
-VERSION=0.99.14
+VERSION=1.00
 
 
 # some useful functions
 # some useful functions
 # ask displays 1st parameter, and ask new value for variable, whose name is
 # ask displays 1st parameter, and ask new value for variable, whose name is
@@ -105,6 +105,8 @@ echo Installing compiler and RTL ...
 unztar baselinux.tar.gz $PREFIX
 unztar baselinux.tar.gz $PREFIX
 rm -f $EXECDIR/ppc386
 rm -f $EXECDIR/ppc386
 ln -sf $LIBDIR/ppc386 $EXECDIR/ppc386
 ln -sf $LIBDIR/ppc386 $EXECDIR/ppc386
+echo Installing utilities...
+unztar utillinux.tar.gz $PREFIX
 if yesno "Install FCL"; then
 if yesno "Install FCL"; then
     unztar unitsfcllinux.tar.gz $PREFIX
     unztar unitsfcllinux.tar.gz $PREFIX
 fi
 fi
@@ -152,7 +154,7 @@ if yesno "Install sources"; then
     unztar packagessrc.tar.gz $PREFIX
     unztar packagessrc.tar.gz $PREFIX
   fi    
   fi    
   if yesno "Install Utils source"; then
   if yesno "Install Utils source"; then
-    unztar utilssrc.tar.gz $PREFIX
+    unztar utilsrc.tar.gz $PREFIX
   fi    
   fi    
   rm -f *src.tar.gz
   rm -f *src.tar.gz
   echo Done.
   echo Done.
@@ -180,10 +182,6 @@ echo
 # Install /etc/ppc386.cfg, this is done using the samplecfg script
 # Install /etc/ppc386.cfg, this is done using the samplecfg script
 $LIBDIR/samplecfg $LIBDIR
 $LIBDIR/samplecfg $LIBDIR
 
 
-# Cleanup
-SOURCES=`/bin/ls *src.tar.gz`
-FILES=`/bin/ls *linux.tar.gz`
-
 # The End
 # The End
 echo
 echo
 echo End of installation. 
 echo End of installation.