summaryrefslogtreecommitdiffhomepage
path: root/tasks
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2021-01-27 16:09:12 +0900
committerKOBAYASHI Shuji <[email protected]>2021-01-27 16:09:12 +0900
commitd6a9ffa2b5be787594db57ad74e4e0768628c00f (patch)
treebd3a3f4206643b4d89afbcb1999976118d119711 /tasks
parentbf56ecd2bf4362d1b15f5d3ed0e337ab1c303b02 (diff)
downloadmruby-d6a9ffa2b5be787594db57ad74e4e0768628c00f.tar.gz
mruby-d6a9ffa2b5be787594db57ad74e4e0768628c00f.zip
Rename `.i` created for presym scan to `.pi`
This is because compiler's `-save-temps=obj` option creates `.i` with the same name.
Diffstat (limited to 'tasks')
-rw-r--r--tasks/presym.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/presym.rake b/tasks/presym.rake
index 537d42487..8b18acd75 100644
--- a/tasks/presym.rake
+++ b/tasks/presym.rake
@@ -25,7 +25,7 @@ MRuby.each_target do |build|
next unless File.extname(prereq) == build.exts.object
next unless prereq.start_with?(build_dir)
next if mrbc_build_dir && prereq.start_with?(mrbc_build_dir)
- pps << prereq.ext(build.exts.preprocessed)
+ pps << prereq.ext(build.exts.presym_preprocessed)
end
file presym.list_path => pps do