Skip to content

Commit a883c6d

Browse files
Move crates_patches and cross_patches into the patches folder
1 parent 6afabce commit a883c6d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

build_system/src/prepare.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn prepare_libcore(
9595
)?;
9696
if cross_compile {
9797
walk_dir(
98-
"cross_patches",
98+
"patches/cross_patches",
9999
|_| Ok(()),
100100
|file_path: &Path| {
101101
patches.push(file_path.to_path_buf());
@@ -161,7 +161,7 @@ where
161161
run_command(&[&"git", &"checkout", &checkout_commit], Some(&repo_path))?;
162162
let filter = format!("-{}-", clone_result.repo_name);
163163
walk_dir(
164-
"crate_patches",
164+
"patches/crate_patches",
165165
|_| Ok(()),
166166
|file_path| {
167167
let patch = file_path.as_os_str().to_str().unwrap();

0 commit comments

Comments
 (0)