@@ -914,8 +914,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
914914 t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
915915 t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
916916 t ! ( fs:: create_dir_all( pkg. join( "rust-std" ) ) ) ;
917- t ! ( fs:: create_dir_all( pkg. join( "rls" ) ) ) ;
918- t ! ( fs:: create_dir_all( pkg. join( "rust-analysis" ) ) ) ;
919917
920918 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
921919 & pkg. join ( "rustc" ) ) ;
@@ -925,17 +923,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
925923 & pkg. join ( "rust-docs" ) ) ;
926924 cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
927925 & pkg. join ( "rust-std" ) ) ;
928- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rls" ) , target) ) ,
929- & pkg. join ( "rls" ) ) ;
930- cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-analysis" ) , target) ) ,
931- & pkg. join ( "rust-analysis" ) ) ;
932926
933927 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
934928 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
935929 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
936930 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-std" ) , 0o755 ) ;
937- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rls" ) , 0o755 ) ;
938- install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-analysis" ) , 0o755 ) ;
939931
940932 let pkgbuild = |component : & str | {
941933 let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -949,8 +941,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
949941 pkgbuild ( "cargo" ) ;
950942 pkgbuild ( "rust-docs" ) ;
951943 pkgbuild ( "rust-std" ) ;
952- pkgbuild ( "rls" ) ;
953- pkgbuild ( "rust-analysis" ) ;
954944
955945 // create an 'uninstall' package
956946 install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
0 commit comments