Description: LLVM's cmake doesn't install stuff to multiarch directory, which
 breaks julia installation when MULTIARCH* options in Make.inc is turned on.
 This hacky solution aims to workaround installation failure.
See: https://github.com/JuliaLang/julia/issues/27922
Forward: no need
Author: Mo Zhou
Index: julia/deps/llvm.mk
===================================================================
--- julia.orig/deps/llvm.mk
+++ julia/deps/llvm.mk
@@ -560,6 +560,7 @@ ifeq ($(OS),Darwin)
 # https://github.com/JuliaLang/julia/issues/29981
 LLVM_INSTALL += && ln -s libLLVM.dylib $2$$(build_shlibdir)/libLLVM-$$(LLVM_VER_SHORT).dylib
 endif
+LLVM_INSTALL += && find $2 -type f,l -name 'libLLVM*so*' -print -exec install -Dv '{}' $(shell pwd)/../$$(libdir)/julia/ \;
 
 $(eval $(call staged-install,llvm,llvm-$$(LLVM_VER)/build_$$(LLVM_BUILDTYPE), \
 	LLVM_INSTALL,,,))
