Skip to content

Commit c9da7cb

Browse files
committed
Remove sys.dll on windows when running make dist, until related issues are solved (#8895, among others)
1 parent 7d41d6e commit c9da7cb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,9 @@ ifeq ($(JULIA_CPU_TARGET), native)
350350
endif
351351

352352
ifeq ($(OS), WINNT)
353+
# If we are running on WINNT, also delete sys.dll until it stops causing issues (#8895, among others)
354+
-rm -f $(DESTDIR)$(private_libdir)/sys.$(SHLIB_EXT)
355+
353356
[ ! -d dist-extras ] || ( cd dist-extras && \
354357
cp 7z.exe 7z.dll libexpat-1.dll zlib1.dll $(bindir) && \
355358
mkdir $(DESTDIR)$(prefix)/Git && \

0 commit comments

Comments
 (0)