From 238d3842ee5f103d2a6069a316b1a759f5998dfc Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Mon, 19 Aug 2024 21:23:42 -0700 Subject: [PATCH] Set stdlib sources as read-only during installation We previously did this for `base` and `test` in https://github.com/JuliaLang/julia/pull/55524, may as well do it for `stdlib` as well. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 735d342a79eb5..a6ee500e48d6b 100644 --- a/Makefile +++ b/Makefile @@ -385,6 +385,7 @@ endif # Set .jl sources as read-only to match package directories find $(DESTDIR)$(datarootdir)/julia/base -type f -name \*.jl -exec chmod 0444 '{}' \; + find $(DESTDIR)$(datarootdir)/julia/stdlib -type f -name \*.jl -exec chmod 0444 '{}' \; find $(DESTDIR)$(datarootdir)/julia/test -type f -name \*.jl -exec chmod 0444 '{}' \; # Copy documentation