# HG changeset patch # User Claus Gittinger # Date 842513452 -7200 # Node ID 31eb6d678ae3dbf6f03c4ca356c5b13cd6732388 # Parent e41abdee193f6be92b82b3e3726ff63ef344e283 dont copy the whole configuration tree diff -r e41abdee193f -r 31eb6d678ae3 STXInstaller.st --- a/STXInstaller.st Tue Sep 10 21:01:20 1996 +0200 +++ b/STXInstaller.st Thu Sep 12 09:30:52 1996 +0200 @@ -83,6 +83,7 @@ dirsToMake add:stxBinDir. dirsToMake add:stxLibDir. dirsToMake add:(stxLibDir asFilename constructString:'lib'). + dirsToMake add:(stxLibDir asFilename constructString:'lib/configurations'). dirsToMake add:(stxLibDir asFilename constructString:'doc'). dirsToMake add:(stxLibDir asFilename constructString:'doc/online'). dirsToMake add:(stxLibDir asFilename constructString:'doc/online/english'). @@ -126,12 +127,15 @@ installSTCFiles ifTrue:[ fileSpec := fileSpec , #( - ( 'stc/stc' #bin nil false '755' ) - ( 'rules/stmkmp' #bin nil false '755' ) - ( 'rules/stmkmf' #bin nil false '755' ) - ( 'include' #lib nil false '644' ) - ( 'configurations' #lib nil false '644' ) - ( 'rules' #lib nil false '644' ) + ( 'stc/stc' #bin nil false '755' ) + ( 'rules/stmkmp' #bin nil false '755' ) + ( 'rules/stmkmf' #bin nil false '755' ) + ( 'include' #lib nil false '644' ) + ( 'configurations' #lib nil false '644' ) + ( 'configurations/PACKS' #lib 'configurations' false '644' ) + ( 'configurations/my*' #lib 'configurations' false '644' ) + ( 'configurations/vendor*' #lib 'configurations' false '644' ) + ( 'rules' #lib nil false '644' ) ( 'support/VGL/vogl/src/libvogl.*' #lib 'lib' false '644' ) ( 'support/VGL/vogl/src/*.h' #lib 'include' false '644' )