STXInstaller.st
changeset 28 b3a8378dd626
parent 27 8c5195f9508a
child 29 537410dfad60
equal deleted inserted replaced
27:8c5195f9508a 28:b3a8378dd626
     7 	poolDictionaries:''
     7 	poolDictionaries:''
     8 	category:'eXept-tools'
     8 	category:'eXept-tools'
     9 !
     9 !
    10 
    10 
    11 
    11 
    12 !STXInstaller  class methodsFor:'startup'!
    12 !STXInstaller class methodsFor:'startup'!
    13 
    13 
    14 open
    14 open
    15     ^ self new open
    15     ^ self new open
    16 
    16 
    17     "
    17     "
   359 createSymbolicLinks
   359 createSymbolicLinks
   360     |msg dirsToMake numDirs nDone|
   360     |msg dirsToMake numDirs nDone|
   361 
   361 
   362     msg := (resources array:#('ST/X Installation' '' 'creating symbolic links' '' '' '')) asStringCollection.
   362     msg := (resources array:#('ST/X Installation' '' 'creating symbolic links' '' '' '')) asStringCollection.
   363 
   363 
       
   364     commandTraceView showCR:(resources string:'setting up symbolic links in doc/online ...').
   364     OperatingSystem executeCommand:('cd ' , stxLibDir , '/doc/online ; make links').
   365     OperatingSystem executeCommand:('cd ' , stxLibDir , '/doc/online ; make links').
   365     ^ true
   366     ^ true
   366 
   367 
   367     "Created: 17.7.1996 / 15:24:19 / cg"
   368     "Created: 17.7.1996 / 15:24:19 / cg"
   368     "Modified: 18.7.1996 / 22:18:38 / cg"
   369     "Modified: 18.7.1996 / 22:18:38 / cg"
   734     "
   735     "
   735 
   736 
   736     "Modified: 18.7.1996 / 22:10:42 / cg"
   737     "Modified: 18.7.1996 / 22:10:42 / cg"
   737 ! !
   738 ! !
   738 
   739 
   739 !STXInstaller  class methodsFor:'documentation'!
   740 !STXInstaller class methodsFor:'documentation'!
   740 
   741 
   741 version
   742 version
   742     ^ '$Header$'
   743     ^ '$Header$'
   743 ! !
   744 ! !