@@ -914,8 +914,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
914
914
t ! ( fs:: create_dir_all( pkg. join( "cargo" ) ) ) ;
915
915
t ! ( fs:: create_dir_all( pkg. join( "rust-docs" ) ) ) ;
916
916
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" ) ) ) ;
919
917
920
918
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rustc" ) , target) ) ,
921
919
& pkg. join ( "rustc" ) ) ;
@@ -925,17 +923,11 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
925
923
& pkg. join ( "rust-docs" ) ) ;
926
924
cp_r ( & work. join ( & format ! ( "{}-{}" , pkgname( build, "rust-std" ) , target) ) ,
927
925
& 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" ) ) ;
932
926
933
927
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rustc" ) , 0o755 ) ;
934
928
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "cargo" ) , 0o755 ) ;
935
929
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "rust-docs" ) , 0o755 ) ;
936
930
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 ) ;
939
931
940
932
let pkgbuild = |component : & str | {
941
933
let mut cmd = Command :: new ( "pkgbuild" ) ;
@@ -949,8 +941,6 @@ pub fn extended(build: &Build, stage: u32, target: &str) {
949
941
pkgbuild ( "cargo" ) ;
950
942
pkgbuild ( "rust-docs" ) ;
951
943
pkgbuild ( "rust-std" ) ;
952
- pkgbuild ( "rls" ) ;
953
- pkgbuild ( "rust-analysis" ) ;
954
944
955
945
// create an 'uninstall' package
956
946
install ( & etc. join ( "pkg/postinstall" ) , & pkg. join ( "uninstall" ) , 0o755 ) ;
0 commit comments