aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index 5880224ac77..71a36a60a08 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4359,7 +4359,10 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file,
4359 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY, 4359 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY,
4360 SSDATA (tmp_file)); 4360 SSDATA (tmp_file));
4361 4361
4362 CALL1I (comp-clean-up-stale-eln, file_name); 4362 /* FIXME: this if workaround a cc-bytecomp compilation issue
4363 appearing on the Docker build that must be investigated. */
4364 if (NILP (Fsymbol_value(intern_c_string ("byte-native-for-bootstrap"))))
4365 CALL1I (comp-clean-up-stale-eln, file_name);
4363 CALL2I (comp-delete-or-replace-file, file_name, tmp_file); 4366 CALL2I (comp-delete-or-replace-file, file_name, tmp_file);
4364 4367
4365 if (!noninteractive) 4368 if (!noninteractive)