Skip to content

Commit 39a234f

Browse files
authored
Don't delete input expmap files (#60329)
1 parent 2ec05d5 commit 39a234f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ $(BUILDDIR)/julia.expmap: $(SRCDIR)/julia.expmap.in $(JULIAHOME)/VERSION
176176
clean: | $(CLEAN_TARGETS)
177177
rm -f $(BUILDDIR)/*.o $(BUILDDIR)/*.dbg.obj
178178
rm -f $(build_bindir)/julia*
179-
rm -f $(BUILDDIR)/julia.expmap*
179+
rm -f $(BUILDDIR)/julia.expmap
180180
rm -f $(BUILDDIR)/Info.plist*
181181

182182
.PHONY: clean release debug julia-release julia-debug

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ clean:
588588
-rm -rf $(build_shlibdir)/libccalltest* $(build_shlibdir)/libllvmcalltest* $(build_shlibdir)/libccalllazyfoo* $(build_shlibdir)/libccalllazybar*
589589
-rm -f $(BUILDDIR)/julia_flisp.boot* $(BUILDDIR)/julia_flisp.boot.inc* $(BUILDDIR)/jl_internal_funcs.inc* $(BUILDDIR)/jl_data_globals_defs.inc*
590590
-rm -f $(BUILDDIR)/*.dbg.obj $(BUILDDIR)/*.o $(BUILDDIR)/*.dwo $(BUILDDIR)/*.$(SHLIB_EXT) $(BUILDDIR)/*.a $(BUILDDIR)/*.h.gen
591-
-rm -f $(BUILDDIR)/julia.expmap*
591+
-rm -f $(BUILDDIR)/julia.expmap
592592
-rm -f $(BUILDDIR)/julia_version.h
593593
-rm -f $(BUILDDIR)/compile_commands.json*
594594

0 commit comments

Comments
 (0)